pubkey stuff

This commit is contained in:
2021-05-06 16:37:32 +02:00
parent 49e8aa43b4
commit 0377278ea0
3 changed files with 40 additions and 2 deletions

13
readme.md Normal file
View File

@ -0,0 +1,13 @@
Generate the RSA key pair using:
Private key (keep it secret!):
openssl genrsa -out authservice.pem 2048
Extract the public key (publish it):
openssl rsa -in authservice.pem -outform PEM -pubout -out authservice.pub