Skip to content
Rob Nagler edited this page Nov 2, 2019 · 35 revisions

Amazon Web Services (AWS)

Verify ssh key fingerprint

You have to convert the ssh private key to PEM format then DER format, and finally compute md5:

ssh-keygen -e -m PEM -f ~/.ssh/id_rsa | openssl rsa -RSAPublicKey_in -outform DER | openssl md5 -c

Clone this wiki locally