Collections:
Other Resources:
OpenSSL "ca" - Sign the CSR Again
How to sign the a CSR again the OpenSSL "ca" command? It was signed for 1 year the first time. But the requester wants the certificate to valid for 3 years.
✍: FYIcenter.com
If you sign a CSR incorrectly and want to sign it again with the OpenSSL "ca" command,
you need to revoke the certificate, then sign it again correctly.
The following test shows you how to sign a CSR again after revoke the certificate from the first signing:
C:\Users\fyicenter>\local\OpenSSL-Win32\bin\openssl.exe
OpenSSL> ca -in test.csr -keyfile my_ca.key -cert my_ca.crt -out test.crt
-policy policy_anything
Using configuration from C:\local\OpenSSL-Win32\bin\openssl.cfg
Enter pass phrase for my_ca.key:fyicenter
Check that the request matches the signature
Signature ok
Certificate Details:
Serial Number: 4098 (0x1002)
...
Certificate is to be certified until Jul 31 23:40:49 2017 GMT (365 days)
Sign the certificate? [y/n]:y
1 out of 1 certificate requests certified, commit? [y/n]y
Write out database with 1 new entries
Data Base Updated
OpenSSL> ca -revoke test.crt -keyfile my_ca.key -cert my_ca.crt
Using configuration from C:\local\OpenSSL-Win32\bin\openssl.cfg
Enter pass phrase for my_ca.key:fyicenter
Revoking Certificate 1002.
Data Base Updated
OpenSSL> ca -in test.csr -keyfile my_ca.key -cert my_ca.crt -out test.crt
-policy policy_anything -days 730
Using configuration from C:\local\OpenSSL-Win32\bin\openssl.cfg
Enter pass phrase for my_ca.key:fyicenter
Check that the request matches the signature
Signature ok
Certificate Details:
Serial Number: 4099 (0x1003)
...
Certificate is to be certified until Jul 31 23:45:22 2018 GMT (730 days)
Sign the certificate? [y/n]:y
1 out of 1 certificate requests certified, commit? [y/n]y
Write out database with 1 new entries
Data Base Updated
OpenSSL> exit
C:\Users\fyicenter>type demoCA\index.txt
...
R 170901014049Z 160901014346Z 1002 unknown /C=US/ST=NY/L=NY
/O=FYIcenter.com/CN=www.fyicenter.com/emailAddress=joe@fyicenter.com
V 180901014522Z 1003 unknown /C=US/ST=NY/L=NY
/O=FYIcenter.com/CN=www.fyicenter.com/emailAddress=joe@fyicenter.com
⇒ OpenSSL "ca" - "error while loading CRL number"
2016-09-10, ∼3033🔥, 0💬
Popular Posts:
Certificate Summary: Subject: www.java.com Issuer: Symantec Class 3 EV SSL CA - G3 Expiration: 2017-...
Certificate Summary: Subject: GlobalSign GCC R3 DV TLS CA 2020 Issuer: GlobalSign Expiration: 2029-0...
How to manage CA Certificates used by Safari 5 on Windows systems? Why there is no setting in browse...
How to examine a keystore entry's certificate with Portecle? To examine a keystore entry's certifica...
Certificate summary - Owner: about.me, Messaging Operations, AOL Inc., L=Dulles, ST=Virginia, US Iss...