Last active
December 11, 2015 16:08
-
-
Save zhovner/4625684 to your computer and use it in GitHub Desktop.
OpenSSL exampels
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Расшифровать ключ | |
openssl rsa –in enc.key -out dec.key | |
# Сравнить фингерпринты | |
openssl rsa -noout -modulus -in /rsa.key | |
openssl x509 -noout -modulus -in /crt.crt | |
# Вся инфа о сертификате | |
openssl x509 -in /cert.pem -noout -text | |
# чекнуть подключением | |
openssl s_client -connect paypal.com:443 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment