Python

check python ssl version

1. Intro

check python cryptography, ssl version

2. command

2.1. cryptography

python
import cryptography
cryptography.__version__
quit()

2.2. ssl

python
import ssl
ssl.OPENSSL_VERSION
quit()

 

 

 

Back To Top