Categories:
Android (13)
Apple Mac (27)
DH Keys (39)
DSA Keys (70)
EC Keys (971)
Firefox (30)
General (10)
Google Chrome (25)
Intermediate CA (152)
Java VM (29)
JDK Keytool (28)
Microsoft CertUtil (29)
Microsoft Edge (9)
Mozilla CertUtil (21)
OpenSSL (236)
Other (7)
Portecle (38)
Publishers (3292)
Revoked Certificates (16)
Root CA (85)
RSA Keys (2636)
Tools (46)
Tutorial (1)
What Is (22)
Windows (127)
Collections:
Other Resources:
OpenSSL "ca -gencrl" - Generate CRL
How to generate a CRL using the OpenSSL "ca" command? I need to publish the CRL to inform users about certificates I have revoked.
✍: FYIcenter.com
If you want to generate a CRL (Certificate Revocation List),
you can use the OpenSSL "ca -gencrl" command as shown below:
C:\Users\fyicenter>\local\OpenSSL-Win32\bin\openssl.exe OpenSSL> ca -gencrl -keyfile my_ca.key -cert my_ca.crt -out my_ca.crl Using configuration from C:\local\OpenSSL-Win32\bin\openssl.cfg Enter pass phrase for my_ca.key:fyicenter OpenSSL>exit C:\Users\fyicenter>type my_ca.crl -----BEGIN X509 CRL----- MIIBnTCCAQYCAQEwDQYJKoZIhvcNAQELBQAwgZYxCzAJBgNVBAYTAlVTMQswCQYD VQQIDAJUWDENMAsGA1UEBwwEQ2l0eTEWMBQGA1UECgwNRllJY2VudGVyLmNvbTER MA8GA1UECwwIU2VjdXJpdHkxGjAYBgNVBAMMEUZZSWNlbnRlciBSb290IENBMSQw IgYJKoZIhvcNAQkBFhVyb290LWNhQGZ5aWNlbnRlci5jb20XDTE2MDkwMjE4MDQx OVoXDTE2MTAwMjE4MDQxOVowKjATAgIQABcNMTYwOTAxMDAzNDI2WjATAgIQAhcN MTYwOTAxMDE0MzQ2WqAPMA0wCwYDVR0UBAQCAhAAMA0GCSqGSIb3DQEBCwUAA4GB AJi8u8UZ23ygK/bZP4rMXOiFwcK+edwYZGa8or9U76j4yA7u7qlEg5VwzTn0FcEF FITl85awHJGehuTE3b3uCR/UtgFnR6OHFN6U+DsJbBrw8573ardp+a3dxRLbiVec DIPxvSpdHqAEe5Z3bcc9ZfEj2BueC0Q0q3dAUy0533JL -----END X509 CRL-----
Notes about the above test:
⇒ OpenSSL "crl -text" - View CRL in Test Format
2016-09-10, 9039👍, 0💬
Popular Posts:
How to get the hash value (or thumbprint value) of a certificate? I have the certificate stored in D...
How to export the public key out from a certificate using OpenSSL "x509" command? You can export the...
What is the usage of certificates? Can certificates be used for authentication, privacy protection, ...
Certificate Summary: Subject: SwissSign Silver CA - G2 Issuer: SwissSign Silver CA - G2 Expiration: ...
Where to find tutorials on using OpenSSL "req" commands for certificate request and certificate gene...