Jump to content

You're browsing the 2004-2023 VATSIM Forums archive. All content is preserved in a read-only fashion.
For the latest forum posts, please visit https://forum.vatsim.net.

Need to find something? Use the Google search below.
PLEASE READ - Webmaster Support Forum
This forum will be retired in the near future. Please direct all queries to our dedicated GitHub support page https://github.com/vatsimnetwork/developer-info/discussions 
Here you can find documentation on our services and we are continuing to migrate pertinent information into the Wiki pages https://github.com/vatsimnetwork/developer-info/wiki

RSA Keys


Kieran Hardern
 Share

Recommended Posts

Kieran Hardern
Posted
Posted

I realised I've made this a little ambiguous in a couple of places, so I thought I'd clarify.

 

If using RSA-SHA1 as your authentication method, you require an openssl keypair. SSH keys generated using RSA won't work.

 

For quick reference:

 

Generate a 2048 bit RSA key and save in current location as keyname.pem

openssl genrsa -out keyname.pem 2048

 

Extract the public key from the private key and save as keyname.pub

openssl rsa -in keyname.pem -pubout > keyname.pub

Link to comment
Share on other sites

 Share