rcon with rsa cryptography

This commit is contained in:
Diavolo
2023-08-28 19:50:19 +02:00
parent 395e531d8d
commit b55ff8675e
4 changed files with 280 additions and 59 deletions

View File

@ -0,0 +1,3 @@
@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

View File

@ -0,0 +1,4 @@
#!/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