Categories:
Android (13)
Apple Mac (27)
DH Keys (39)
DSA Keys (70)
EC Keys (982)
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 (3315)
Revoked Certificates (16)
Root CA (85)
RSA Keys (2663)
Tools (46)
Tutorial (1)
What Is (22)
Windows (127)
Collections:
Other Resources:
OpenSSL "verify" - Validate Self-Signed Certificate
How to validate a self-signed certificate using OpenSSL "verify" command?
✍: FYIcenter.com
You can validate your self-signed certificate using the OpenSSL "verify" command as shown below:
C:\Users\fyicenter>\local\openssl\openssl.exe OpenSSL> verify rsa_test.crt rsa_test.crt: C = us, ST = NY, L = New York, O = Donald Inc., OU = IT, CN = www.donald.inc, emailAddress = john@donald.inc error 18 at 0 depth lookup:self signed certificate OK OpenSSL> verify -trusted rsa_test.crt rsa_test.crt rsa_test.crt: OK OpenSSL> verify -CAfile rsa_test.crt rsa_test.crt rsa_test.crt: OK
Commands and their behaviors used in this test:
⇒ OpenSSL "req -x509 -newkey" - Generate Private Key and Certificate
⇐ OpenSSL "x509 -text" - View Self-Signed Certificate in Text
2016-11-15, 1947👍, 0💬
Popular Posts:
Where is the default trusted certificate keystore file located on my Windows computer? I think I hav...
How to use the "keytool -exportcert" command? I want to export a certificate out of a keystore file ...
Where to find tutorials on using Certificate Generation Tool "makecert.exe" on Windows? Here is a co...
How to get a list of extended options supported by the "makecert.exe" command? I want to know more o...
What are ASN.1 field types supported by the OpenSSL "ans1parse" command? OpenSSL "ans1parse" command...