Calculate RSA key fingerprint

后端 未结 14 1591
别那么骄傲
别那么骄傲 2020-11-28 16:55

I need to do the SSH key audit for GitHub, but I am not sure how do find my RSA key fingerprint. I originally followed a guide to generate an SSH key on Linux.

What

14条回答
  •  無奈伤痛
    2020-11-28 17:33

    Reproducing content from AWS forums here, because I found it useful to my use case - I wanted to check which of my keys matched ones I had imported into AWS

    openssl pkey -in ~/.ssh/ec2/primary.pem -pubout -outform DER | openssl md5 -c

    Where: - primary.pem is the private key to check

提交回复
热议问题