How do I check if my SSL Certificate is SHA1 or SHA2 on the commandline

后端 未结 4 416
攒了一身酷
攒了一身酷 2021-02-05 07:43

How do I check if my SSL Certificate is using SHA1 or SHA2, from the commandline?

And yes, i this is similar to this, but i need a cli-tool and i want to understand how

4条回答
  •  醉话见心
    2021-02-05 08:30

    after googling for quite some time i came up with the following snippet (unix):

    openssl s_client -connect : < /dev/null 2>/dev/null | openssl x509 -text -in /dev/stdin | grep "Signature Algorithm"
    

    windows (thanx Nick Westgate, see below)

    certutil -dump cacert.pem | find "Algorithm"
    

提交回复
热议问题