├── .gitignore ├── LICENSE ├── README.md ├── changeciphers.py ├── dhprimes.py ├── fallback.py ├── heartbleed.py ├── poodle.py ├── sendcert.py ├── server.py ├── servername.py ├── ssl2.py ├── stapling.py ├── supportedciphers.py └── tls ├── __init__.py ├── alert.py ├── application.py ├── changecipherspec.py ├── ciphersuites.py ├── ext_heartbeat.py ├── ext_servername.py ├── ext_statusrequest.py ├── handshake.py ├── record.py ├── ssl2.py ├── starttls.py ├── unknown.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/README.md -------------------------------------------------------------------------------- /changeciphers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/changeciphers.py -------------------------------------------------------------------------------- /dhprimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/dhprimes.py -------------------------------------------------------------------------------- /fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/fallback.py -------------------------------------------------------------------------------- /heartbleed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/heartbleed.py -------------------------------------------------------------------------------- /poodle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/poodle.py -------------------------------------------------------------------------------- /sendcert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/sendcert.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/server.py -------------------------------------------------------------------------------- /servername.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/servername.py -------------------------------------------------------------------------------- /ssl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/ssl2.py -------------------------------------------------------------------------------- /stapling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/stapling.py -------------------------------------------------------------------------------- /supportedciphers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/supportedciphers.py -------------------------------------------------------------------------------- /tls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/__init__.py -------------------------------------------------------------------------------- /tls/alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/alert.py -------------------------------------------------------------------------------- /tls/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/application.py -------------------------------------------------------------------------------- /tls/changecipherspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/changecipherspec.py -------------------------------------------------------------------------------- /tls/ciphersuites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/ciphersuites.py -------------------------------------------------------------------------------- /tls/ext_heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/ext_heartbeat.py -------------------------------------------------------------------------------- /tls/ext_servername.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/ext_servername.py -------------------------------------------------------------------------------- /tls/ext_statusrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/ext_statusrequest.py -------------------------------------------------------------------------------- /tls/handshake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/handshake.py -------------------------------------------------------------------------------- /tls/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/record.py -------------------------------------------------------------------------------- /tls/ssl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/ssl2.py -------------------------------------------------------------------------------- /tls/starttls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/starttls.py -------------------------------------------------------------------------------- /tls/unknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/unknown.py -------------------------------------------------------------------------------- /tls/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WestpointLtd/pytls/HEAD/tls/utils.py --------------------------------------------------------------------------------