Announcements

SecurID® Discussions

Browse the SecurID discussion board to get product help and collaborate with other SecurID users.
TJReed
Beginner
Beginner

How to verify Certificate

Jump to solution

All,

 

Viewing the Active Certificate in our SecurID 3.0 Appliance, I can tell we are using a certificate issued from our internal CA.  However, I am not sure if it was issued/signed using SHA-256.  Is there a way I can tell this?

 

Thank you,

 

T.J.

Labels (1)
0 Likes
1 Solution

Accepted Solutions
BrianTwomey
Employee
Employee

Hi T.J.

 

You can check by visiting the site in your browser and viewing the certificate that the browser received. The details of how to do that can vary from browser to browser, but generally if you click or right-click on the lock icon, there should be an option to view the certificate details.

In the list of certificate fields, look for one called "Certificate Signature Algorithm".

 

Alternatively you can also use open_ssl:

 

Assuming the SSL certificate is stored in a file called example.crt, you can use the following OpenSSL command to display the details of the SSL certificate.

$ openssl x509 -noout -text -in example.crt

View solution in original post

2 Replies
BrianTwomey
Employee
Employee

Hi T.J.

 

You can check by visiting the site in your browser and viewing the certificate that the browser received. The details of how to do that can vary from browser to browser, but generally if you click or right-click on the lock icon, there should be an option to view the certificate details.

In the list of certificate fields, look for one called "Certificate Signature Algorithm".

 

Alternatively you can also use open_ssl:

 

Assuming the SSL certificate is stored in a file called example.crt, you can use the following OpenSSL command to display the details of the SSL certificate.

$ openssl x509 -noout -text -in example.crt

Brian,

 

Thanks.  

Right-clicking the lock gave me the information I need.  

The certification was signed using SHA-256.

 

T.J.

0 Likes