SSH Fingerprints have changed
closed
Jacob Machado
in this documentation, the ssh fingerprint shown is in MD5 format, but "ssh-keygen -l -f id_rsa" will now show in SHA256, making it ambiguous which one to use in api calls, like when using ansible playbooks.
Hazel Virdó
marked this post as
closed
Hazel Virdó
You can get a private key's fingerprint in MD5 format using
-E md5
, as in ssh-keygen -l -E md5 -f id_rsa
.