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, ∼3842🔥, 0💬
Popular Posts:
How to run OpenSSL "req -new" command to generate CSR with x.509 v3 extensions? I have req_extension...
Certificate Summary: Subject: Equifax Secure Global eBusiness CA-1 Issuer: Equifax Secure Global eBu...
How to import a key pair with Portecle? To import a key pair into a keystore from a PKCS #12 keystor...
How to create a new system certificate store using the "makecert.exe" command? Yes, "makecert.exe" c...
What certificates are included in the Java default trusted certificate keystore file: "cacerts"? For...