- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to verify Certificate
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.
- Tags:
- AM
- Auth Manager
- Authentication Manager
- Certificate
- Community Thread
- Discussion
- Forum Thread
- RSA Authentication Manager
- RSA SecurID
- RSA SecurID Access
- SecurID
- sha-256 certificates
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Brian,
Thanks.
Right-clicking the lock gave me the information I need.
The certification was signed using SHA-256.
T.J.
