-
Notifications
You must be signed in to change notification settings - Fork 137
Displaying Certificate Info
Endi S. Dewata edited this page Jul 2, 2021
·
4 revisions
This page describes how to display certificate and CSR information which includes:
-
serial number
-
subject DN
-
issuer DN
-
validity range
To display the content of a certificate in internal token:
$ certutil -L -d <NSS database> -n <nickname>
To display the content of a certificate in HSM:
$ certutil -L -d <NSS database> -h <token> -f <HSM password file> -n <token>:<nickname>
To display the content of a certificate in a PEM file:
$ openssl x509 -text -noout -in <filename>
To display the content of a CSR in a PEM file:
$ $ openssl req -text -noout -in <filename>
Tip
|
To find a page in the Wiki, enter the keywords in search field, press Enter, then click Wikis. |