4 lines
142 B
Batchfile
4 lines
142 B
Batchfile
|
@echo off
|
||
|
echo Exporting DER rsa-private.key to PEM...
|
||
|
openssl rsa -in rsa-private.key -inform DER -outform PEM -out exported-rsa-private.key
|