5 lines
157 B
Bash
5 lines
157 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "Exporting DER rsa-private.key to PEM..."
|
||
|
openssl rsa -in rsa-private.key -inform DER -outform PEM -out exported-rsa-private.key
|