Skip to content

Instantly share code, notes, and snippets.

@zhovner
Last active December 11, 2015 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhovner/4625684 to your computer and use it in GitHub Desktop.
Save zhovner/4625684 to your computer and use it in GitHub Desktop.
OpenSSL exampels
# Расшифровать ключ
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