|
| 1 | +Metadata-Version: 2.4 |
| 2 | +Name: tlslite-ng |
| 3 | +Version: 0.9.0b1 |
| 4 | +Summary: Pure python implementation of SSL and TLS. |
| 5 | +Home-page: https://github.com/tlsfuzzer/tlslite-ng |
| 6 | +Author: Alicja Kario |
| 7 | + |
| 8 | +License: LGPLv2 |
| 9 | +Keywords: ssl,tls,pure-python |
| 10 | +Classifier: Development Status :: 5 - Production/Stable |
| 11 | +Classifier: Intended Audience :: Developers |
| 12 | +Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2) |
| 13 | +Classifier: Operating System :: OS Independent |
| 14 | +Classifier: Programming Language :: Python |
| 15 | +Classifier: Programming Language :: Python :: 2 |
| 16 | +Classifier: Programming Language :: Python :: 2.6 |
| 17 | +Classifier: Programming Language :: Python :: 2.7 |
| 18 | +Classifier: Programming Language :: Python :: 3 |
| 19 | +Classifier: Programming Language :: Python :: 3.7 |
| 20 | +Classifier: Programming Language :: Python :: 3.8 |
| 21 | +Classifier: Programming Language :: Python :: 3.9 |
| 22 | +Classifier: Programming Language :: Python :: 3.10 |
| 23 | +Classifier: Programming Language :: Python :: 3.11 |
| 24 | +Classifier: Programming Language :: Python :: 3.12 |
| 25 | +Classifier: Programming Language :: Python :: 3.13 |
| 26 | +Classifier: Topic :: Security :: Cryptography |
| 27 | +Classifier: Topic :: Software Development :: Libraries :: Python Modules |
| 28 | +Classifier: Topic :: System :: Networking |
| 29 | +Obsoletes: tlslite |
| 30 | +Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.* |
| 31 | +License-File: LICENSE |
| 32 | +Requires-Dist: ecdsa>=0.18.0b1 |
| 33 | +Dynamic: author |
| 34 | +Dynamic: author-email |
| 35 | +Dynamic: classifier |
| 36 | +Dynamic: description |
| 37 | +Dynamic: home-page |
| 38 | +Dynamic: keywords |
| 39 | +Dynamic: license |
| 40 | +Dynamic: license-file |
| 41 | +Dynamic: obsoletes |
| 42 | +Dynamic: requires-dist |
| 43 | +Dynamic: requires-python |
| 44 | +Dynamic: summary |
| 45 | + |
| 46 | +tlslite-ng is a pure python implementation of SSLv3.0, TLS 1.0, TLS 1.1, |
| 47 | +TLS 1.2 and TLS 1.3 protocols. |
| 48 | + |
| 49 | +It can use pycrypto, m2crypto and gmp for acceleration of cryptographic |
| 50 | +operations but is not dependant upon them. |
| 51 | + |
| 52 | +Functionality implemented include: |
| 53 | + - all above mentioned protocols, including support for client certificates |
| 54 | + (RFC 6101, RFC 2246, RFC 4346, RFC 5246, RFC 8446 - not complete) |
| 55 | + - RSA, RSA-PSS, DSA, and ECDSA certificates |
| 56 | + - RC4, 3DES-CBC, AES-CBC, AES-GCM, AES-CCM, AES-CCM_8 and ChaCha20 ciphers |
| 57 | + (RFC 5246, RFC 6347, RFC 4492, RFC 5288, RFC 5289, RFC 7539, RFC 7905, |
| 58 | + RFC 6655, RFC 7251) |
| 59 | + - MD5, SHA1, SHA256 and SHA384 HMACs as well as AEAD mode of operation with |
| 60 | + GCM or Poly1305 authenticator |
| 61 | + - RSA, DHE_RSA, DHE_DSS, ECDHE_RSA, ECDHE_ECDSA key exchange |
| 62 | + - full set of signature hashes (md5, sha1, sha224, sha256, sha384, sha512, |
| 63 | + rsa_pss_rsae_sha256, rsa_pss_rsae_sha384 and rsa_pss_rsae_sha512) for |
| 64 | + ServerKeyExchange and CertfificateVerify |
| 65 | + - secp256r1, secp384r1, secp521r1, secp256k1, secp224r1 and secp192r1 curves |
| 66 | + for ECDHE key exchange (support for last two depends on the version of ecdsa |
| 67 | + library used) |
| 68 | + - x25519 and x448 curves for ECDHE key exchage (RFC 7748. RFC 4492bis) |
| 69 | + - anonymous DHE key exchange |
| 70 | + - anonymous ECDH key exchange |
| 71 | + - PSK and PSK-DH key exchange in TLS 1.3 |
| 72 | + - session ticket based resumption (RFC 5077) and in TLS 1.3 |
| 73 | + - post-handshake client authentication in TLS 1.3 |
| 74 | + - NULL encryption ciphersuites |
| 75 | + - FALLBACK_SCSV (RFC 7507) |
| 76 | + - encrypt-then-MAC mode of operation for CBC ciphersuites (RFC 7366) |
| 77 | + - TACK certificate pinning |
| 78 | + - SRP_SHA_RSA and SRP_SHA ciphersuites (RFC 5054) |
| 79 | + - Extended Master Secret calculation for TLS connections (RFC 7627) |
| 80 | + - padding extension (RFC 7685) |
| 81 | + - Keying material exporter (RFC 5705) |
| 82 | + - Next Protocol Negotiation |
| 83 | + - Application-Layer Protocol Negotiation Extension (RFC 7301) |
| 84 | + - FFDHE prime/group negotiation (RFC 7919) |
| 85 | + - Heartbeat Extension (RFC 6520) |
| 86 | + - Record Size Limit (RFC 8449) |
| 87 | + - TLS Certificate Compression (RFC 8879) |
| 88 | + - Hybrid ML-KEM key exchage groups (draft-kwiatkowski-tls-ecdhe-mlkem-02) |
| 89 | + - support for Brainpool curves in TLS 1.2 and TLS 1.3 |
| 90 | + - Delegated Credentials (RFC 9345) |
| 91 | + - ML-DSA certificates suppport (draft-ietf-tls-mldsa-00) |
| 92 | + |
| 93 | + |
| 94 | +tlslite-ng aims to be a drop-in replacement for tlslite while providing more |
| 95 | +comprehensive set of features and more secure defaults. |
0 commit comments