used for RiseUpGroup's auth-server
Generate a private key with the following command. If you like, you may change the key length. The following command generates a 4096-bit key:
openssl genrsa -out private.pem 4096
To extract the public key from the private key, run the following command:
openssl rsa -in private.pem -pubout -out public.pem