Comparison of TLS implementations
The Transport Layer Security (TLS) protocol provides the ability to secure communications across or inside networks. This comparison of TLS implementations compares several of the most notable libraries. There are several TLS implementations which are free software and open source.
All comparison categories use the stable version of each implementation listed in the overview section. The comparison is limited to features that directly relate to the TLS protocol.
Overview
Implementation | Developed by | Open source | Software license | Copyright holder | Written in | Latest stable version, release date | Origin | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Botan | Jack Lloyd | Yes | Simplified BSD License | Jack Lloyd | C++ | 3.2.0 (October 9, 2023[1]) [±] | US (Vermont) | ||||||||||
BoringSSL | Yes | OpenSSL-SSLeay dual-license, ISC license | Eric Young, Tim Hudson, Sun, OpenSSL project, Google, and others | C, C++, Go, assembly | ?? | Australia/EU | |||||||||||
Bouncy Castle | The Legion of the Bouncy Castle Inc. | Yes | MIT License | Legion of the Bouncy Castle Inc. | Java, C# |
|
Australia | ||||||||||
BSAFE | Dell, formerly RSA Security | No | Proprietary | Dell | Java, C, assembly | SSL-J 6.5.1 (July 10, 2023[7]) [±] SSL-J 7.2 (December 20, 2023[8]) [±] |
Australia | ||||||||||
cryptlib | Peter Gutmann | Yes | Sleepycat License and commercial license | Peter Gutmann | C | 3.4.5 (2019[11]) [±] | NZ | ||||||||||
GnuTLS | GnuTLS project | Yes | LGPL-2.1-or-later | Free Software Foundation | C | EU (Greece and Sweden) | |||||||||||
Java Secure Socket Extension (JSSE) | Oracle | Yes | GNU GPLv2 and commercial license | Oracle | Java | 21.0.0 LTS (September 19, 2023 ) [±] 17.0.6 LTS (February 18, 2023[±] |
US | ||||||||||
LibreSSL | OpenBSD Project | Yes | Apache-1.0, BSD-4-Clause, ISC, and public domain | Eric Young, Tim Hudson, Sun, OpenSSL project, OpenBSD Project, and others | C, assembly | Canada | |||||||||||
MatrixSSL[14] | PeerSec Networks | Yes | GNU GPLv2+ and commercial license | PeerSec Networks | C | 4.2.2 (September 11, 2019[15]) [±] | US | ||||||||||
Mbed TLS (previously PolarSSL) | Arm | Yes | Apache License 2.0, GNU GPLv2+ and commercial license | Arm Holdings | C | EU (Netherlands) | |||||||||||
Network Security Services (NSS) | Mozilla, AOL, Red Hat, Sun, Oracle, Google and others | Yes | MPL 2.0 | NSS contributors | C, assembly |
|
US | ||||||||||
OpenSSL | OpenSSL project | Yes | Apache-2.0[lower-alpha 1] | Eric Young, Tim Hudson, Sun, OpenSSL project, and others | C, assembly | Australia/EU | |||||||||||
s2n | Amazon | Yes | Apache License 2.0, GNU GPLv2+ and commercial license | Amazon, Inc. | C | Continuous | US | ||||||||||
Schannel | Microsoft | No | Proprietary | Microsoft Inc. | Windows 11, 2021-10-05 | US | |||||||||||
Secure Transport | Apple Inc. | Yes | APSL 2.0 | Apple Inc. | 57337.20.44 (OS X 10.11.2), 2015-12-08 | US | |||||||||||
wolfSSL (previously CyaSSL) | wolfSSL[17] | Yes | GNU GPLv2+ and commercial license | wolfSSL Inc.[18] | C, assembly | 5.6.4 (October 30, 2023[19]) [±] | US | ||||||||||
Erlang/OTP SSL application | Ericsson | Yes | Apache License 2.0 | Ericsson | Erlang | OTP-21, 2018-06-19 | Sweden | ||||||||||
Implementation | Developed by | Open source | Software license | Copyright owner | Written in | Latest stable version, release date | Origin |
- ↑ Apache-2.0 for OpenSSL 3.0 and later releases. OpenSSL-SSLeay dual-license for any release before OpenSSL 3.0.
TLS/SSL protocol version support
Several versions of the TLS protocol exist. SSL 2.0 is a deprecated[20] protocol version with significant weaknesses. SSL 3.0 (1996) and TLS 1.0 (1999) are successors with two weaknesses in CBC-padding that were explained in 2001 by Serge Vaudenay.[21] TLS 1.1 (2006) fixed only one of the problems, by switching to random initialization vectors (IV) for CBC block ciphers, whereas the more problematic use of mac-pad-encrypt instead of the secure pad-mac-encrypt was addressed with RFC 7366.[22] A workaround for SSL 3.0 and TLS 1.0, roughly equivalent to random IVs from TLS 1.1, was widely adopted by many implementations in late 2011,[23]. In 2014, the POODLE vulnerability of SSL 3.0 was discovered, which takes advantage of the known vulnerabilities in CBC, and an insecure fallback negotiation used in browsers.[24]
TLS 1.2 (2008) introduced a means to identify the hash used for digital signatures. While permitting the use of stronger hash functions for digital signatures in the future (rsa,sha256/sha384/sha512) over the SSL 3.0 conservative choice (rsa,sha1+md5), the TLS 1.2 protocol change inadvertently and substantially weakened the default digital signatures and provides (rsa,sha1) and even (rsa,md5).[25]
Datagram Transport Layer Security (DTLS or Datagram TLS) 1.0 is a modification of TLS 1.1 for a packet-oriented transport layer, where packet loss and packet reordering have to be tolerated. The revision DTLS 1.2 based on TLS 1.2 was published in January 2012.[26]
TLS 1.3 (2018) specified in RFC 8446 includes major optimizations and security improvements. QUIC (2021) specified in RFC 9000 and DTLS 1.3 (2022) specified in RFC 9147 builds on TLS 1.3. The publishing of TLS 1.3 and DTLS 1.3 obsoleted TLS 1.2 and DTLS 1.2.
Note that there are known vulnerabilities in SSL 2.0 and SSL 3.0. In 2021, IETF published RFC 8996 also forbidding negotiation of TLS 1.0, TLS 1.1, and DTLS 1.0 due to known vulnerabilities. NIST SP 800-52 requires support of TLS 1.3 by January 2024. Support of TLS 1.3 means that two compliant nodes will never negotiate TLS 1.2.
Implementation | SSL 2.0 (insecure)[27] | SSL 3.0 (insecure)[28] | TLS 1.0 (deprecated)[29] | TLS 1.1 (deprecated)[30] | TLS 1.2[31] | TLS 1.3 | DTLS 1.0 (deprecated)[32] | DTLS 1.2[26] |
---|---|---|---|---|---|---|---|---|
Botan | No | No[33] | No | No | Yes | Yes | No | Yes |
BoringSSL | Yes | Yes | Yes | Yes | Yes | Yes | ||
Bouncy Castle | No | No | Yes | Yes | Yes | Yes (draft version) |
Yes | Yes |
BSAFE SSL-J[34] | No | Disabled by default | No[lower-alpha 1] | No[lower-alpha 1] | Yes | Yes | No | No |
cryptlib | No | Disabled by default at compile time | Yes | Yes | Yes | No | No | |
GnuTLS | No[lower-alpha 2] | Disabled by default[35] | Yes | Yes | Yes | Yes[36] | Yes | Yes |
JSSE | No[lower-alpha 2] | Disabled by default[37] | Disabled by default[38] | Disabled by default[38] | Yes | Yes | Yes | Yes |
LibreSSL | No[39] | No[40] | Yes | Yes | Yes | Yes | Yes | Yes[41] |
MatrixSSL | No | Disabled by default at compile time[42] | Yes | Yes | Yes | Yes | Yes | Yes |
Mbed TLS | No | No[43] | No[43] | No[43] | Yes | Yes (experimental) |
Yes[44] | Yes[44] |
NSS | No[lower-alpha 3] | Disabled by default[45] | Yes | Yes[46] | Yes[47] | Yes[48] | Yes[46] | Yes[49] |
OpenSSL | No[50] | Disabled by default | Yes | Yes[51] | Yes[51] | Yes | Yes | Yes[52] |
s2n[53] | No | Disabled by default | Yes | Yes | Yes | Yes | No | No |
Schannel XP, 2003[54] | Disabled by default in MSIE 7 | Enabled by default | Enabled by default in MSIE 7 | No | No | No | No | No |
Schannel Vista[55] | Disabled by default | Enabled by default | Yes | No | No | No | No | No |
Schannel 2008[55] | Disabled by default | Enabled by default | Yes | Disabled by default (KB4019276) | Disabled by default (KB4019276) | No | No | No |
Schannel 7, 2008R2[56] | Disabled by default | Disabled by default in MSIE 11 | Yes | Enabled by default in MSIE 11 | Enabled by default in MSIE 11 | No | Yes[57] | No[57] |
Schannel 8, 2012[56] | Disabled by default | Enabled by default | Yes | Disabled by default | Disabled by default | No | Yes | No |
Schannel 8.1, 2012R2, 10 v1507 & v1511[56] | Disabled by default | Disabled by default in MSIE 11 | Yes | Yes | Yes | No | Yes | No |
Schannel 10 v1607 / 2016[58] | No | Disabled by default | Yes | Yes | Yes | No | Yes | Yes |
Schannel 11 / 2022[59] | No | Disabled by default | Yes | Yes | Yes | Yes | Yes | Yes |
Secure Transport
OS X 10.2-10.7, iOS 1-4 |
Yes | Yes | Yes | No | No | No | No | |
Secure Transport OS X 10.8-10.10, iOS 5-8 | No[lower-alpha 4] | Yes | Yes | Yes[lower-alpha 4] | Yes[lower-alpha 4] | Yes[lower-alpha 4] | No | |
Secure Transport OS X 10.11, iOS 9 | No | No[lower-alpha 4] | Yes | Yes | Yes | Yes | Unknown | |
Secure Transport OS X 10.13, iOS 11 | No | No[lower-alpha 4] | Yes | Yes | Yes | Yes (draft version)[60] |
Yes | Unknown |
wolfSSL | No | Disabled by default[61] | Disabled by default[62] | Yes | Yes | Yes | Yes | Yes |
Erlang/OTP SSL application[63] | No [lower-alpha 5] | No [lower-alpha 6] | Disabled by default [lower-alpha 5] | Disabled by default [lower-alpha 5] | Yes | Partially [lower-alpha 7] | Disabled by default [lower-alpha 5] | Yes |
Implementation | SSL 2.0 (insecure)[27] | SSL 3.0 (insecure)[28] | TLS 1.0 (deprecated)[29] | TLS 1.1 (deprecated)[30] | TLS 1.2[31] | TLS 1.3 | DTLS 1.0 (deprecated)[32] | DTLS 1.2[26] |
- ↑ 1.0 1.1 As of SSL-J 7.0, support for TLS 1.0 and 1.1 has been removed
- ↑ 2.0 2.1 SSL 2.0 client hello is supported for backward compatibility reasons even though SSL 2.0 is not supported.
- ↑ Server-side implementation of the SSL/TLS protocol still supports processing of received v2-compatible client hello messages."NSS 3.24 release notes". Mozilla Developer Network. Mozilla. https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.24_release_notes. Retrieved 2016-06-19.
- ↑ 4.0 4.1 4.2 4.3 4.4 4.5 Secure Transport: SSL 2.0 was discontinued in OS X 10.8. SSL 3.0 was discontinued in OS X 10.11 and iOS 9.TLS 1.1, 1.2 and DTLS are available on iOS 5.0 and later, and OS X 10.9 and later."Technical Note TN2287: iOS 5 and TLS 1.2 Interoperability Issues". iOS Developer Library. Apple Inc.. https://developer.apple.com/library/ios/technotes/tn2287/. Retrieved 2012-05-03.
- ↑ 5.0 5.1 5.2 5.3 Since OTP 22
- ↑ Since OTP 23
- ↑ "Erlang OTP SSL application TLS 1.3 compliance table". https://www.erlang.org/doc/apps/ssl/standards_compliance.html#tls-1.3.
NSA Suite B Cryptography
Required components for NSA Suite B Cryptography (RFC 6460) are:
- Advanced Encryption Standard (AES) with key sizes of 128 and 256 bits. For traffic flow, AES should be used with either the Counter Mode (CTR) for low bandwidth traffic or the Galois/Counter Mode (GCM) mode of operation for high bandwidth traffic (see Block cipher modes of operation) — symmetric encryption
- Elliptic Curve Digital Signature Algorithm (ECDSA) — digital signatures
- Elliptic Curve Diffie–Hellman (ECDH) — key agreement
- Secure Hash Algorithm 2 (SHA-256 and SHA-384) — message digest
Per CNSSP-15, the 256-bit elliptic curve (specified in FIPS 186-2), SHA-256, and AES with 128-bit keys are sufficient for protecting classified information up to the Secret level, while the 384-bit elliptic curve (specified in FIPS 186-2), SHA-384, and AES with 256-bit keys are necessary for the protection of Top Secret information.
Implementation | TLS 1.2 Suite B |
---|---|
Botan | Yes |
Bouncy Castle | Yes |
BSAFE | Yes[34] |
cryptlib | Yes |
GnuTLS | Yes |
JSSE | Yes[64] |
LibreSSL | Yes |
MatrixSSL | Yes |
Mbed TLS | Yes |
NSS | No[65] |
OpenSSL | Yes[52] |
S2n | |
Schannel | Yes[66] |
Secure Transport | No |
wolfSSL | Yes |
Implementation | TLS 1.2 Suite B |
Certifications
Note that certain certifications have received serious negative criticism from people who are actually involved in them.[67]
Implementation | FIPS 140-1, FIPS 140-2[68] | Embedded FIPS Solution | |
---|---|---|---|
Level 1 | Level 2[disputed ] | ||
Botan[69] | |||
Bouncy Castle | BC-FJA 1.0.0 (#2768) BC-FJA 1.0.1 (#3152) |
||
BSAFE SSL-J[70] | Crypto-J 6.0 (1785, 1786) Crypto-J 6.1 / 6.1.1.0.1 (2057, 2058) Crypto-J 6.2 / 6.2.1.1 (2468, 2469) Crypto-J 6.2.4 (3172, 3184) Crypto-J 6.2.5 (#3819, #3820) |
||
cryptlib[71] | |||
GnuTLS[72] | Red Hat Enterprise Linux GnuTLS Cryptographic Module (#2780) | ||
JSSE | |||
LibreSSL[39] | no support | ||
MatrixSSL[73] | SafeZone FIPS Cryptographic Module: 1.1 (#2389) | ||
Mbed TLS[74] | |||
NSS[75] | Network Security Services: 3.2.2 (#247) Network Security Services Cryptographic Module: 3.11.4 (#815), 3.12.4 (#1278), 3.12.9.1 (#1837) |
Netscape Security Module: 1 (#7[notes 1]), 1.01 (#47[notes 2]) Network Security Services: 3.2.2 (#248[notes 3]) Network Security Services Cryptographic Module: 3.11.4 (#814[notes 4]), 3.12.4 (#1279, #1280[notes 5]) |
|
OpenSSL[76] | OpenSSL FIPS Object Module: 1.0 (#624), 1.1.1 (#733), 1.1.2 (#918), 1.2, 1.2.1, 1.2.2, 1.2.3 or 1.2.4 (#1051) 2.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.0.5, 2.0.6, 2.0.7 or 2.0.8 (#1747) |
||
Schannel[77] | Cryptographic modules in Windows NT 4.0, 95, 95, 2000, XP, Server 2003, CE 5, CE 6, Mobile 6.x, Vista, Server 2008, 7, Server 2008 R2, 8, Server 2012, RT, Surface, Phone 8 See details on Microsoft FIPS 140 Validated Cryptographic Modules |
||
Secure Transport | Apple FIPS Cryptographic Module: 1.0 (OS X 10.6, #1514), 1.1 (OS X 10.7, #1701) Apple OS X CoreCrypto Module; CoreCrypto Kernel Module: 3.0 (OS X 10.8, #1964, #1956), 4.0 (OS X 10.9, #2015, #2016) Apple iOS CoreCrypto Module; CoreCrypto Kernel Module: 3.0 (iOS 6, #1963, #1944), 4.0 (iOS 7 , #2020, #2021) |
||
wolfSSL[78] | wolfCrypt FIPS Module: 4.0 (#3389) See details on NIST certificate for validated Operating Environments wolfCrypt FIPS Module: 3.6.0 (#2425) See details on NIST certificate for validated Operating Environments |
Yes | |
Implementation | Level 1 | Level 2 | Embedded FIPS Solution |
FIPS 140-1, FIPS 140-2 |
- ↑ with Sun Sparc 5 w/ Sun Solaris v 2.4SE (ITSEC-rated)
- ↑ with Sun Ultra-5 w/ Sun Trusted Solaris version 2.5.1 (ITSEC-rated)
- ↑ with Solaris v8.0 with AdminSuite 3.0.1 as specified in UK IT SEC CC Report No. P148 EAL4 on a SUN SPARC Ultra-1
- ↑ with these platforms; Red Hat Enterprise Linux Version 4 Update 1 AS on IBM xSeries 336 with Intel Xeon CPU, Trusted Solaris 8 4/01 on Sun Blade 2500 Workstation with UltraSPARC IIIi CPU
- ↑ with these platforms; Red Hat Enterprise Linux v5 running on an IBM System x3550, Red Hat Enterprise Linux v5 running on an HP ProLiant DL145, Sun Solaris 10 5/08 running on a Sun SunBlade 2000 workstation, Sun Solaris 10 5/08 running on a Sun W2100z workstation
Key exchange algorithms (certificate-only)
This section lists the certificate verification functionality available in the various implementations.
Implementation | RSA[31] | RSA-EXPORT (insecure)[31] | DHE-RSA (forward secrecy)[31] | DHE-DSS (forward secrecy)[31] | ECDH-ECDSA[79] | ECDHE-ECDSA (forward secrecy)[79] | ECDH-RSA[79] | ECDHE-RSA (forward secrecy)[79] | GOST R 34.10-94, 34.10-2001[80] |
---|---|---|---|---|---|---|---|---|---|
Botan | Disabled by default | No | Yes | Disabled by default | No | Yes | No | Yes | No |
BSAFE | Yes | No | Yes | Yes | Yes | Yes | Yes | Yes | No |
cryptlib | Yes | No | Yes | Yes | No | Yes | No | No | No |
GnuTLS | Yes | No | Yes | Disabled by default[35] | No | Yes | No | Yes | No |
JSSE | Yes | Disabled by default | Yes | Yes | Yes | Yes | Yes | Yes | No |
LibreSSL | Yes | No[39] | Yes | Yes | No | Yes | No | Yes | Yes[81] |
MatrixSSL | Yes | No | Yes | No | Yes | Yes | Yes | Yes | No |
Mbed TLS | Yes | No | Yes | No | Yes | Yes | Yes | Yes | No |
NSS | Yes | Disabled by default | Yes[82] | Yes | Yes | Yes | Yes | Yes | No[83][84] |
OpenSSL | Yes | No[50] | Yes | Disabled by default[50] | No | Yes | No | Yes | Yes[85] |
Schannel XP/2003 | Yes | Yes | No | XP: Max 1024 bits 2003: 1024 bits only |
No | No | No | No | No[86] |
Schannel Vista/2008 | Yes | Disabled by default | No | 1024 bits by default[87] | No | Yes | No | except AES_GCM | No[86] |
Schannel 8/2012 | Yes | Disabled by default | AES_GCM only[88][89][90] | 1024 bits by default[87] | No | Yes | No | except AES_GCM | No[86] |
Schannel 7/2008R2, 8.1/2012R2 | Yes | Disabled by default | Yes | 2048 bits by default[87] | No | Yes | No | except AES_GCM | No[86] |
Schannel 10 | Yes | Disabled by default | Yes | 2048 bits by default[87] | No | Yes | No | Yes | No[86] |
Secure Transport OS X 10.6 | Yes | Yes | except AES_GCM | Yes | Yes | except AES_GCM | yes | except AES_GCM | No |
Secure Transport OS X 10.8-10.10 | Yes | No | except AES_GCM | No | Yes | except AES_GCM | Yes | except AES_GCM | No |
Secure Transport OS X 10.11 | Yes | No | Yes | No | No | Yes | No | Yes | No |
wolfSSL | Yes | No | Yes | No | Yes | Yes | Yes | Yes | No |
Erlang/OTP SSL application | Yes | No | Yes | Yes | Yes | Yes | Yes | Yes | No |
Implementation | RSA[31] | RSA-EXPORT (insecure)[31] | DHE-RSA (forward secrecy)[31] | DHE-DSS (forward secrecy)[31] | ECDH-ECDSA[79] | ECDHE-ECDSA (forward secrecy)[79] | ECDH-RSA[79] | ECDHE-RSA (forward secrecy)[79] | GOST R 34.10-94, 34.10-2001[80] |
Key exchange algorithms (alternative key-exchanges)
Implementation | SRP[91] | SRP-DSS[91] | SRP-RSA[91] | PSK-RSA[92] | PSK[92] | DHE-PSK (forward secrecy)[92] | ECDHE-PSK (forward secrecy)[93] | KRB5[94] | DH-ANON[31] (insecure) | ECDH-ANON[79] (insecure) |
---|---|---|---|---|---|---|---|---|---|---|
Botan | No | No | No | No | Yes | No | Yes | No | No | No |
BSAFE SSL-J | No | No | No | No | Yes[95] | No | No | No | Disabled by default | Disabled by default |
cryptlib | No | No | No | No | Yes | Yes | No | Unknown | No | No |
GnuTLS | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | Disabled by default | Disabled by default |
JSSE | No | No | No | No | No | No | No | No | Disabled by default | Disabled by default |
LibreSSL | No[96] | No[96] | No[96] | No | No | No | No | No | Yes | Yes |
MatrixSSL | No | No | No | Yes | Yes | Yes | No | No | Disabled by default | No |
Mbed TLS | No | No | No | Yes | Yes | Yes | Yes | No | No | No |
NSS | No[97] | No[97] | No[97] | No[98] | No[98] | No[98] | No[98] | No | Client side only, disabled by default[99] | Disabled by default[100] |
OpenSSL | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes[101] | Disabled by default[102] | Disabled by default[102] |
Schannel | No | No | No | No | No | No | No | Yes | No | No |
Secure Transport | No | No | No | No | No | No | No | Unknown | Yes | Yes |
wolfSSL | Yes | Yes | Yes | Yes | Yes | Yes | Yes[103] | Yes | No | No |
Erlang/OTP SSL application | Disabled by default | Disabled by default | Disabled by default | Disabled by default | Disabled by default | Disabled by default | No | No | Disabled by default | Disabled by default |
Implementation | SRP[91] | SRP-DSS[91] | SRP-RSA[91] | PSK-RSA[92] | PSK[92] | DHE-PSK (forward secrecy)[92] | ECDHE-PSK (forward secrecy)[93] | KRB5[94] | DH-ANON[31] (insecure) | ECDH-ANON[79] (insecure) |
Certificate verification methods
Implementation | Application-defined | PKIX path validation[104] | CRL[105] | OCSP[106] | DANE (DNSSEC)[107] | Trust on First Use (TOFU) | CT[108] |
---|---|---|---|---|---|---|---|
Botan | Yes | Yes | Yes | Yes | No | No | Unknown |
Bouncy Castle | Yes | Yes | Yes | Yes | Yes | No | Unknown |
BSAFE | Yes | Yes | Yes | Yes | No | No | Unknown |
cryptlib | Yes | Yes | Yes | Yes | No | No | Unknown |
GnuTLS | Yes | Yes | Yes | Yes | Yes | Yes | Unknown |
JSSE | Yes | Yes | Yes | Yes | No | No | No |
LibreSSL | Yes | Yes | Yes | Yes | No | No | Unknown |
MatrixSSL | Yes | Yes | Yes | Yes[109] | No | No | Unknown |
Mbed TLS | Yes | Yes | Yes | No[110] | No | No | Unknown |
NSS | Yes | Yes | Yes | Yes | No[111] | No | Unknown |
OpenSSL | Yes | Yes | Yes | Yes | Yes | No | Yes |
s2n | No [112] | Unknown [113] | Unknown [114] | ||||
Schannel | Unknown | Yes | Yes[115] | Yes[115] | No | No | Unknown |
Secure Transport | Yes | Yes | Yes | Yes | No | No | Unknown |
wolfSSL | Yes | Yes | Yes | Yes | No | No | Unknown |
Erlang/OTP SSL application | Yes | Yes | Yes | No | No | No | Unknown |
Implementation | Application-defined | PKIX path validation | CRL | OCSP | DANE (DNSSEC) | Trust on First Use (TOFU) | CT |
Encryption algorithms
Implementation | Block cipher with mode of operation | Stream cipher | None | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
AES GCM [116] |
AES CCM [117] |
AES CBC | Camellia GCM [118] |
Camellia CBC [119] |
ARIA GCM [120] |
ARIA CBC [120] |
SEED CBC [121] |
3DES EDE CBC (insecure)[122] |
GOST 28147-89 CNT (proposed) [80][n 1] |
ChaCha20-Poly1305 [123] |
Null (insecure) [n 2] | |
Botan | Yes | Yes | Yes | Yes | Yes | No | No | Disabled by default | Disabled by default | No | Yes[124] | Not implemented |
BoringSSL | Yes | No | Yes | No | No | No | No | No | Yes | No | Yes | |
BSAFE SSL-J | Yes | Yes | Yes | No | No | No | No | No | Disabled by default | No | No | Disabled by default |
cryptlib | Yes | No | Yes | No | No | No | No | No | Yes | No | No | Not implemented |
GnuTLS | Yes | Yes[35] | Yes | Yes | Yes | No | No | No | Disabled by default[125] | No | Yes[126] | Disabled by default |
JSSE | Yes | No | Yes | No | No | No | No | No | Disabled by default[127] | No | Yes (JDK 12+)[128] |
Disabled by default |
LibreSSL | Yes[39] | No | Yes | No | Yes[81] | No | No | No[39] | Yes | Yes[81] | Yes[39] | Disabled by default |
MatrixSSL | Yes | No | Yes | No | No | No | No | Yes | Disabled by default | No | Yes[129] | Disabled by default |
Mbed TLS | Yes | Yes [130] | Yes | Yes | Yes | Yes[131] | Yes[131] | No | No[43] | No | Yes[132] | Disabled by default at compile time |
NSS | Yes[133] | No | Yes | No[134][n 3] | Yes[135] | No | No | Yes[136] | Yes | No[83][84] | Yes[137] | Disabled by default |
OpenSSL | Yes[138] | Disabled by default[50] | Yes | No | Disabled by default[50] | Disabled by default[139] | No | Disabled by default[50] | Disabled by default[50] | Yes[85] | Yes[50] | Disabled by default |
Schannel XP/2003 | No | No | 2003 only[140] | No | No | No | No | No | Yes | No[86] | No | Disabled by default |
Schannel Vista/2008, 2008R2, 2012 | No | No | Yes | No | No | No | No | No | Yes | No[86] | No | Disabled by default |
Schannel 7, 8, 8.1/2012R2 | Yes except ECDHE_RSA [88][89] |
No | Yes | No | No | No | No | No | Yes | No[86] | No | Disabled by default |
Schannel 10[141] | Yes | No | Yes | No | No | No | No | No | Yes | No[86] | No | Disabled by default |
Secure Transport OS X 10.6 - 10.10 | No | No | Yes | No | No | No | No | No | Yes | No | No | Disabled by default |
Secure Transport OS X 10.11 | Yes | No | Yes | No | No | No | No | No | Yes | No | No | Disabled by default |
wolfSSL | Yes | Yes | Yes | No | No | No | No | No | Yes | No | Yes | Disabled by default |
Erlang/OTP SSL application | Yes | No | Yes | No | No | No | No | No | Disabled by default | No | Experimental | Disable by default |
Implementation | Block cipher with mode of operation | Stream cipher | None | |||||||||
AES GCM [116] |
AES CCM [117] |
AES CBC | Camellia GCM [118] |
Camellia CBC [119] |
ARIA GCM [120] |
ARIA CBC [120] |
SEED CBC [121] |
3DES EDE CBC (insecure)[122] |
GOST 28147-89 CNT (proposed) [80][n 1] |
ChaCha20-Poly1305 [123] |
Null (insecure) [n 2] |
- Notes
Obsolete algorithms
Implementation | Block cipher with mode of operation | Stream cipher | ||||
---|---|---|---|---|---|---|
IDEA CBC [n 1](insecure)[143] |
DES CBC (insecure) [n 1] |
DES-40 CBC (EXPORT, insecure) [n 2] |
RC2-40 CBC (EXPORT, insecure) [n 2] |
RC4-128 (insecure) [n 3] |
RC4-40 (EXPORT, insecure) [n 4][n 2] | |
Botan | No | No | No | No | No[144] | No |
BoringSSL | No | No | No | No | Disabled by default at compile time | No |
BSAFE SSL-J | No | Disabled by default | Disabled by default | No | Disabled by default | Disabled by default |
cryptlib | No | Disabled by default at compile time | No | No | Disabled by default at compile time | No |
GnuTLS | No | No | No | No | Disabled by default[35] | No |
JSSE | No | Disabled by default | Disabled by default | No | Disabled by default | Disabled by default [145] |
LibreSSL | Yes | Yes | No[39] | No[39] | Yes | No[39] |
MatrixSSL | Yes | No | No | No | Disabled by default | No |
Mbed TLS | No | Disabled by default at compile time | No | No | Disabled by default at compile time[44] | No |
NSS | Yes | Disabled by default | Disabled by default | Disabled by default | Lowest priority[146][147] | Disabled by default |
OpenSSL | Disabled by default[50] | Disabled by default | No[50] | No[50] | Disabled by default | No[50] |
Schannel XP/2003 | No | Yes | Yes | Yes | Yes | Yes |
Schannel Vista/2008 | No | Disabled by default | Disabled by default | Disabled by default | Yes | Disabled by default |
Schannel 7/2008R2 | No | Disabled by default | Disabled by default | Disabled by default | Lowest priority will be disabled soon[148] |
Disabled by default |
Schannel 8/2012 | No | Disabled by default | Disabled by default | Disabled by default | Only as fallback | Disabled by default |
Schannel 8.1/2012R2 | No | Disabled by default | Disabled by default | Disabled by default | Disabled by default[148] | Disabled by default |
Schannel 10[141] | No | Disabled by default | Disabled by default | Disabled by default | Disabled by default[148] | Disabled by default |
Secure Transport OS X 10.6 | Yes | Yes | Yes | Yes | Yes | Yes |
Secure Transport OS X 10.7 | Yes | Unknown | Unknown | Unknown | Yes | Unknown |
Secure Transport OS X 10.8-10.9 | Yes | Disabled by default | Disabled by default | Disabled by default | Yes | Disabled by default |
Secure Transport OS X 10.10-10.11 | Yes | Disabled by default | Disabled by default | Disabled by default | Lowest priority | Disabled by default |
Secure Transport macOS 10.12 | Yes | Disabled by default | Disabled by default | Disabled by default | Disabled by default | Disabled by default |
wolfSSL | Disabled by default[149] | No | No | No | Disabled by default | No |
Erlang/OTP SSL application | no | Disabled by default | no | no | Disabled by default | no |
Implementation | Block cipher with mode of operation | Stream cipher | ||||
IDEA CBC [n 1](insecure)[143] |
DES CBC (insecure) [n 1] |
DES-40 CBC (EXPORT, insecure) [n 2] |
RC2-40 CBC (EXPORT, insecure) [n 2] |
RC4-128 (insecure) [n 3] |
RC4-40 (EXPORT, insecure) [n 4][n 2] |
- Notes
- ↑ 1.0 1.1 1.2 1.3 IDEA and DES have been removed from TLS 1.2.[142]
- ↑ 2.0 2.1 2.2 2.3 2.4 2.5 40 bits strength of cipher suites were designed to operate at reduced key lengths in order to comply with US regulations about the export of cryptographic software containing certain strong encryption algorithms (see Export of cryptography from the United States). These weak suites are forbidden in TLS 1.1 and later.
- ↑ 3.0 3.1 The RC4 attacks weaken or break RC4 used in SSL/TLS. Use of RC4 is prohibited by RFC 7465.
- ↑ 4.0 4.1 The RC4 attacks weaken or break RC4 used in SSL/TLS.
Supported elliptic curves
This section lists the supported elliptic curves by each implementation.
Defined curves in RFC 8446 (for TLS 1.3) and RFC 8422, 7027 (for TLS 1.2 and earlier)
applicable TLS version | TLS 1.3 and earlier | TLS 1.2 and earlier | ||||||
---|---|---|---|---|---|---|---|---|
Implementation | secp256r1 prime256v1 NIST P-256 (0x0017,[150] 23[151]) |
secp384r1 NIST P-384 (0x0018,[150] 24[151]) |
secp521r1 NIST P-521 (0x0019,[150] 25[151]) |
X25519 (0x001D,[150] 29[151]) |
X448 (0x001E,[150] 30[151]) |
brainpoolP256r1 (26)[152] |
brainpoolP384r1 (27)[152] |
brainpoolP512r1 (28)[152] |
Botan | Yes | Yes | Yes | Yes[124] | No | Yes[153] | Yes[153] | Yes[153] |
BoringSSL | Yes | Yes | Yes (disabled by default) | Yes | No | No | No | No |
BSAFE | Yes | Yes | Yes | No | No | No | No | No |
GnuTLS | Yes | Yes | Yes | Yes[154] | Yes[155] | No | No | No |
JSSE | Yes | Yes | Yes | Yes x25519: JDK 13+[156] Ed25519:JDK 15+[157] |
Yes x448: JDK 13+[156] Ed448: JDK 15+[157] |
No | No | No |
LibreSSL | Yes | Yes | Yes | Yes[158] | No | Yes[39] | Yes[39] | Yes[39] |
MatrixSSL | Yes | Yes | Yes | TLS 1.3 only[159] | No | Yes | Yes | Yes |
Mbed TLS | Yes | Yes | Yes | Primitive only[160] | Primitive only[161] | Yes[162] | Yes[162] | Yes[162] |
NSS | Yes | Yes | Yes | Yes[163] | No[164][165] | No[166] | No[166] | No[166] |
OpenSSL | Yes | Yes | Yes | Yes[167][168] | Yes[169][170] | Yes[52] | Yes[52] | Yes[52] |
Schannel Vista/2008, 7/2008R2, 8/2012, 8.1/2012R2, 10 | Yes | Yes | Yes | No | No | No | No | No |
Secure Transport | Yes | Yes | Yes | No | No | No | No | No |
wolfSSL | Yes | Yes | Yes | Yes[171] | Yes[172] | Yes | Yes | Yes |
Erlang/OTP SSL application | Yes | Yes | Yes | No | No | Yes | Yes | Yes |
Implementation | secp256r1 prime256v1 NIST P-256 (0x0017, 23) |
secp384r1 NIST P-384 (0x0018, 24) |
secp521r1 NIST P-521 (0x0019, 25) |
X25519 (0x001D, 29) |
X448 (0x001E, 30) |
brainpoolP256r1 (26) |
brainpoolP384r1 (27) |
brainpoolP512r1 (28) |
Proposed curves
Implementation | M221 Curve2213 [173] |
E222 [173] |
Curve1174 [173] |
E382 [173] |
M383 [173] |
Curve383187 [173] |
Curve41417 Curve3617 [173] |
M511 Curve511187 [173] |
E521 [173] |
---|---|---|---|---|---|---|---|---|---|
Botan | No | No | No | No | No | No | No | No | No |
BoringSSL | No | No | No | No | No | No | No | No | No |
BSAFE | No | No | No | No | No | No | No | No | No |
GnuTLS | No | No | No | No | No | No | No | No | No |
JSSE | No | No | No | No | No | No | No | No | No |
LibreSSL | No | No | No | No | No | No | No | No | No |
MatrixSSL | No | No | No | No | No | No | No | No | No |
Mbed TLS | No | No | No | No | No | No | No | No | No |
NSS | No | No | No | No | No | No | No | No | No |
OpenSSL | No | No | No | No | No | No | No | No | No |
Schannel Vista/2008, 7/2008R2, 8/2012, 8.1/2012R2, 10 | No | No | No | No | No | No | No | No | No |
Secure Transport | No | No | No | No | No | No | No | No | No |
wolfSSL | No | No | No | No | No | No | No | No | No |
Erlang/OTP SSL application | No | No | No | No | No | No | No | No | No |
Implementation | M221 Curve2213 |
E222 | Curve1174 | E382 | M383 | Curve383187 | Curve41417 Curve3617 |
M511 Curve511187 |
E521 |
Deprecated curves in RFC 8422
Implementation | sect163k1 NIST K-163 (1)[79] |
sect163r1 (2)[79] |
sect163r2 NIST B-163 (3)[79] |
sect193r1 (4)[79] |
sect193r2 (5)[79] |
sect233k1 NIST K-233 (6)[79] |
sect233r1 NIST B-233 (7)[79] |
sect239k1 (8)[79] |
sect283k1 NIST K-283 (9)[79] |
sect283r1 NIST B-283 (10)[79] |
sect409k1 NIST K-409 (11)[79] |
sect409r1 NIST B-409 (12)[79] |
sect571k1 NIST K-571 (13)[79] |
sect571r1 NIST B-571 (14)[79] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Botan | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
BoringSSL | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
BSAFE | Yes | No | Yes | No | No | Yes | Yes | No | Yes | Yes | Yes | Yes | Yes | Yes |
GnuTLS | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
JSSE | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] |
LibreSSL | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
MatrixSSL | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
Mbed TLS | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
NSS | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
OpenSSL | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
Schannel Vista/2008, 7/2008R2, 8/2012, 8.1/2012R2, 10 | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
Secure Transport | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
wolfSSL | No | No | No | No | No | No | No | No | No | No | No | No | No | No |
Erlang/OTP SSL application | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
Implementation | sect163k1 NIST K-163 (1) |
sect163r1 (2) |
sect163r2 NIST B-163 (3) |
sect193r1 (4) |
sect193r2 (5) |
sect233k1 NIST K-233 (6) |
sect233r1 NIST B-233 (7) |
sect239k1 (8) |
sect283k1 NIST K-283 (9) |
sect283r1 NIST B-283 (10) |
sect409k1 NIST K-409 (11) |
sect409r1 NIST B-409 (12) |
sect571k1 NIST K-571 (13) |
sect571r1 NIST B-571 (14) |
Implementation | secp160k1 (15)[79] |
secp160r1 (16)[79] |
secp160r2 (17)[79] |
secp192k1 (18)[79] |
secp192r1 prime192v1 NIST P-192 (19)[79] |
secp224k1 (20)[79] |
secp224r1 NIST P-244 (21)[79] |
secp256k1 (22)[79] |
arbitrary prime curves (0xFF01)[79][176] |
arbitrary char2 curves (0xFF02)[79][176] |
---|---|---|---|---|---|---|---|---|---|---|
Botan | No | No | No | No | No | No | No | No | No | No |
BoringSSL | No | No | No | No | No | No | Yes | No | No | No |
BSAFE | No | No | No | No | Yes | No | Yes | No | No | No |
GnuTLS | No | No | No | No | Yes | No | Yes | No | No | No |
JSSE | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | Notes[lower-alpha 1][lower-alpha 2] | No | No |
LibreSSL | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | No |
MatrixSSL | No | No | No | No | Yes | No | Yes | No | No | No |
Mbed TLS | No | No | No | Yes | Yes | Yes | Yes | Yes | No | No |
NSS | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | No |
OpenSSL | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | No |
Schannel Vista/2008, 7/2008R2, 8/2012, 8.1/2012R2, 10 | No | No | No | No | No | No | No | No | No | No |
Secure Transport | No | No | No | No | Yes | No | No | No | No | No |
wolfSSL | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | No |
Erlang/OTP SSL application | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | No |
Implementation | secp160k1 (15) |
secp160r1 (16) |
secp160r2 (17) |
secp192k1 (18) |
secp192r1 prime192v1 NIST P-192 (19) |
secp224k1 (20) |
secp224r1 NIST P-244 (21) |
secp256k1 (22) |
arbitrary prime curves (0xFF01) |
arbitrary char2 curves (0xFF02) |
- Notes
- ↑ 1.00 1.01 1.02 1.03 1.04 1.05 1.06 1.07 1.08 1.09 1.10 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 These elliptic curves were "Disabled by Default" in current JDK families as part of JDK-8236730.[174]
- ↑ 2.00 2.01 2.02 2.03 2.04 2.05 2.06 2.07 2.08 2.09 2.10 2.11 2.12 2.13 2.14 2.15 2.16 2.17 2.18 2.19 2.20 2.21 These elliptic curves were subsequently removed in JDK 16+ as part of JDK-8252601.[175]
Data integrity
Implementation | HMAC-MD5 | HMAC-SHA1 | HMAC-SHA256/384 | AEAD | GOST 28147-89 IMIT[80] | GOST R 34.11-94[80] |
---|---|---|---|---|---|---|
Botan | No | Yes | Yes | Yes | No | No |
BSAFE | Yes | Yes | Yes | Yes | No | No |
cryptlib | Yes | Yes | Yes | Yes | No | No |
GnuTLS | Yes | Yes | Yes | Yes | No | No |
JSSE | Disabled by Default | Yes | Yes | Yes | No | No |
LibreSSL | Yes | Yes | Yes | Yes | Yes[81] | Yes[81] |
MatrixSSL | Yes | Yes | Yes | Yes | No | No |
Mbed TLS | Yes | Yes | Yes | Yes | No | No |
NSS | Yes | Yes | Yes | Yes | No[83][84] | No[83][84] |
OpenSSL | Yes | Yes | Yes | Yes | Yes[85] | Yes[85] |
Schannel XP/2003, Vista/2008 | Yes | Yes | XP SP3, 2003 SP2 via hotfix[177] | No | No[86] | No[86] |
Schannel 7/2008R2, 8/2012, 8.1/2012R2 | Yes | Yes | Yes | except ECDHE_RSA[88][89][90] | No[86] | No[86] |
Schannel 10 | Yes | Yes | Yes | Yes[141] | No[86] | No[86] |
Secure Transport | Yes | Yes | Yes | Yes | No | No |
wolfSSL | Yes | Yes | Yes | Yes | No | No |
Erlang/OTP SSL application | Yes | Yes | Yes | Yes | No | No |
Implementation | HMAC-MD5 | HMAC-SHA1 | HMAC-SHA256/384 | AEAD | GOST 28147-89 IMIT | GOST R 34.11-94 |
Compression
Note the CRIME security exploit takes advantage of TLS compression, so conservative implementations do not enable compression at the TLS level. HTTP compression is unrelated and unaffected by this exploit, but is exploited by the related BREACH attack.
Implementation | DEFLATE[178] (insecure) |
---|---|
Botan | No |
BSAFE[34] | No |
cryptlib | No |
GnuTLS | Disabled by default |
JSSE | No |
LibreSSL | No[39] |
MatrixSSL | Disabled by default |
Mbed TLS | Disabled by default |
NSS | Disabled by default |
OpenSSL | Disabled by default |
Schannel | No |
Secure Transport | No |
wolfSSL | Disabled by default |
Erlang/OTP SSL application | No |
Implementation | DEFLATE |
Extensions
In this section the extensions each implementation supports are listed. Note that the Secure Renegotiation extension is critical for HTTPS client security[citation needed]. TLS clients not implementing it are vulnerable to attacks, irrespective of whether the client implements TLS renegotiation.
Implementation | Secure Renegotiation [179] |
Server Name Indication [180] |
ALPN [181] |
Certificate Status Request [180] |
OpenPGP [182] |
Supplemental Data [183] |
Session Ticket [184] |
Keying Material Exporter [185] |
Maximum Fragment Length [180] |
Truncated HMAC [180] |
Encrypt-then-MAC [186] |
TLS Fallback SCSV [187] |
Extended Master Secret [188] |
ClientHello Padding [189] |
Raw Public Keys [190] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Botan | Yes | Yes | Yes[191] | No | No | No | Yes | Yes | Yes | No | Yes | Yes[192] | Yes[193] | No | Unknown |
BSAFE SSL-J | Yes | Yes | No | Yes | No | No | No | No | Yes | No | No | No | Yes | No | No |
cryptlib | Yes | Yes | No | No | No | Yes | No | No | No[194] | No | Yes | Yes | Yes | No | Unknown |
GnuTLS | Yes | Yes | Yes[195] | Yes | No[196] | Yes | Yes | Yes | Yes | No | Yes[35] | Yes[197] | Yes[35] | Yes[198] | Yes[199] |
JSSE | Yes | Yes[64] | Yes[64] | Yes | No | No | Yes | No | Yes | No | No | No | Yes | No | No |
LibreSSL | Yes | Yes | Yes[200] | Yes | No | No? | Yes | Yes? | No | No | No | Server side only[201] | No | Yes | No |
MatrixSSL | Yes | Yes | Yes[202] | Yes[129] | No | No | Yes | No | Yes | Yes | No | Yes[129] | Yes[129] | No | Unknown |
Mbed TLS | Yes | Yes | Yes[203] | No | No | No | Yes | No | Yes | Disabled by default[44] | Yes[204] | Yes[204] | Yes[204] | No | No |
NSS | Yes | Yes | Yes[205] | Yes | No[206] | No | Yes | Yes | No | No | No[207] | Yes[208] | Yes[209] | Yes[205] | Unknown |
OpenSSL | Yes | Yes | Yes[52] | Yes | No | No? | Yes | Yes | Yes | No | Yes | Yes[210] | Yes[50] | Yes[211] | Yes[212] |
Schannel XP/2003 | No | No | No | No | No | Yes | No | No | No | No | No | No | No | No | Unknown |
Schannel Vista/2008 | Yes | Yes | No | No | No | Yes | No | No | No | No | No | No | Yes[213] | No | Unknown |
Schannel 7/2008R2 | Yes | Yes | No | Yes | No | Yes | No | No | No | No | No | No | Yes[213] | No | Unknown |
Schannel 8/2012 | Yes | Yes | No | Yes | No | Yes | Client side only[214] | No | No | No | No | No | Yes[213] | No | Unknown |
Schannel 8.1/2012R2, 10 | Yes | Yes | Yes | Yes | No | Yes | Yes[214] | No | No | No | No | No | Yes[213] | No | Unknown |
Secure Transport | Yes | Yes | Unknown | No | No | Yes | No | No | No | No | No | No | No | No | Unknown |
wolfSSL | Yes | Yes | Yes[149] | Yes | No | No | Yes | No | Yes | Yes | Yes[215] | No | Yes | No | Unknown |
Erlang/OTP SSL application | Yes | Yes | Yes | No | No | No | No | No | No | No | No | Yes | No | No | Unknown |
Implementation | Secure Renegotiation | Server Name Indication | ALPN | Certificate Status Request | OpenPGP | Supplemental Data | Session Ticket | Keying Material Exporter | Maximum Fragment Length | Truncated HMAC | Encrypt-then-MAC | TLS Fallback SCSV | Extended Master Secret | ClientHello Padding | Raw Public Keys |
Assisted cryptography
This section lists the known ability of an implementation to take advantage of CPU instruction sets that optimize encryption, or utilize system specific devices that allow access to underlying cryptographic hardware for acceleration or for data separation.
Implementation | PKCS #11 device | Intel AES-NI | VIA PadLock | ARMv8-A | Intel SGX | Intel QAT | Intel SHA | NXP CAAM |
---|---|---|---|---|---|---|---|---|
Botan | Yes[216] | Yes | No | Yes | No | No | No | |
BSAFE SSL-J [lower-alpha 1][lower-alpha 2] | Yes | Yes | No | Yes | No | No | Yes | No |
cryptlib | Yes | Yes | Yes | No | No | |||
Crypto++ | Yes | No | Yes | |||||
GnuTLS | Yes | Yes | Yes | Yes[219] | No | No | Yes | |
JSSE | Yes | Yes[220] | No | No | No | No | ||
LibreSSL | No | Yes | Yes | No | No | |||
MatrixSSL | Yes | Yes | No | Yes | No | No | ||
Mbed TLS | Yes | Yes[221] | Yes | No | No | No | ||
NSS | Yes[222] | Yes[223] | No[224] | No | No | No | ||
OpenSSL | Yes[225] | Yes | Yes | Yes[226] | No | Yes | Partial | |
Schannel | No | Yes | No | No | No | No | ||
Secure Transport | No | Yes[227][228] | No | Yes | No | No | ||
wolfSSL | Yes | Yes | No | Yes | Yes | Yes[229] | Yes[230] | |
Implementation | PKCS #11 device | Intel AES-NI | VIA PadLock | ARMv8-A | Intel SGX | Intel QAT | Intel SHA | NXP CAAM |
System-specific backends
This section lists the ability of an implementation to take advantage of the available operating system specific backends, or even the backends provided by another implementation.
Implementation | /dev/crypto | af_alg | Windows CSP | CommonCrypto | OpenSSL engine |
---|---|---|---|---|---|
Botan | No | No | No | No | Partial |
BSAFE | No | No | No | No | No |
cryptlib | No | No | No | No | No |
GnuTLS | Yes | Yes | No | No | No |
JSSE | No | No | Yes | No | No |
LibreSSL | No | No | No | No | No[231] |
MatrixSSL | No | No | No | Yes | Yes |
Mbed TLS | No | No | No | No | No |
NSS | No | No | No | No | No |
OpenSSL | Yes | Yes | No | No | Yes |
Schannel | No | No | Yes | No | No |
Secure Transport | No | No | No | Yes | No |
wolfSSL | Yes | Yes | Partial | No | Yes[232] |
Erlang/OTP SSL application | No | No | No | No | Yes |
Implementation | /dev/crypto | af_alg | Windows CSP | CommonCrypto | OpenSSL engine |
Cryptographic module/token support
Implementation | TPM support | Hardware token support | Objects identified via |
---|---|---|---|
Botan | Partial[193] | PKCS #11 | |
BSAFE SSL-J | No | No | |
cryptlib | No | PKCS #11 | User-defined label |
GnuTLS | Yes | PKCS #11 | RFC 7512 PKCS #11 URLs[233] |
JSSE | No | PKCS11 Java Cryptography Architecture, Java Cryptography Extension |
|
LibreSSL | Yes | PKCS #11 (via 3rd party module) | Custom method |
MatrixSSL | No | PKCS #11 | |
Mbed TLS | No | PKCS #11 (via libpkcs11-helper) or standard hooks | Custom method |
NSS | No | PKCS #11 | |
OpenSSL | Yes | PKCS #11 (via 3rd party module)[234] | RFC 7512 PKCS #11 URLs[233] |
Schannel | No | Microsoft CryptoAPI | UUID, User-defined label |
Secure Transport | |||
wolfSSL | Yes | PKCS #11 | |
Implementation | TPM support | Hardware token support | Objects identified via |
Code dependencies
Implementation | Dependencies | Optional dependencies |
---|---|---|
Botan | C++20 | SQLite zlib (compression) bzip2 (compression) liblzma (compression) boost trousers (TPM) |
GnuTLS | libc nettle gmp |
zlib (compression) p11-kit (PKCS #11) trousers (TPM) libunbound (DANE) |
JSSE | Java | |
MatrixSSL | none | zlib (compression) |
MatrixSSL-open | libc or newlib | |
Mbed TLS | libc | libpkcs11-helper (PKCS #11) zlib (compression) |
NSS | libc libnspr4 libsoftokn3 libplc4 libplds4 |
zlib (compression) |
OpenSSL | libc | zlib (compression) |
wolfSSL | None | libc zlib (compression) |
Erlang/OTP SSL application | libcrypto (from OpenSSL), Erlang/OTP and its public_key, crypto and asn1 applications | Erlang/OTP -inets (http fetching of CRLs) |
Implementation | Dependencies | Optional dependencies |
Development environment
Implementation | Namespace | Build tools | API manual | Crypto back-end | |
---|---|---|---|---|---|
Botan | Botan::TLS | Makefile | Sphinx | Included (pluggable) | No |
Bouncy Castle | org.bouncycastle | Java Development Environment | Programmers reference manual (PDF) | Included (pluggable) | No |
BSAFE SSL-J | com.rsa.asn1[a] com.rsa.certj[b] |
Java classloader | Javadoc, Developer's guide (HTML) | Included | No |
cryptlib | crypt* | makefile, MSVC project workspaces | Programmers reference manual (PDF), architecture design manual (PDF) | Included (monolithic) | No |
GnuTLS | gnutls_* | Autoconf, automake, libtool | Manual and API reference (HTML, PDF) | External, libnettle | Yes (limited) |
JSSE | javax.net.ssl sun.security.ssl |
Makefile | API Reference (HTML) + | Java Cryptography Architecture, Java Cryptography Extension |
No |
MatrixSSL | matrixSsl_* ps* |
Makefile, MSVC project workspaces, Xcode projects for OS X and iOS | API Reference (PDF), Integration Guide | Included (pluggable) | Yes (Subset: SSL_read, SSL_write, etc.) |
Mbed TLS | mbedtls_ssl_* mbedtls_sha1_* |
Makefile, CMake, MSVC project workspaces, yotta | API Reference + High Level and Module Level Documentation (HTML) | Included (monolithic) | No |
NSS | CERT_* SEC_* |
Makefile | Manual (HTML) | Included, PKCS#11 based[235] | Yes (separate package called nss_compat_ossl[236]) |
OpenSSL | SSL_* SHA1_* |
Makefile | Man pages | Included (monolithic) | N/A |
wolfSSL | wolfSSL_* CyaSSL_* |
Autoconf, automake, libtool, MSVC project workspaces, XCode projects, CodeWarrior projects, MPLAB X projects, Keil, IAR, Clang, GCC, e2Studio | Manual and API Reference (HTML, PDF) | Included (monolithic) | Yes (about 60% of API) |
Implementation | Namespace | Build tools | API manual | Crypto back-end | OpenSSL compatibility layer |
Portability concerns
Implementation | Platform requirements | Network requirements | Thread safety | Random seed | Able to cross-compile | No OS (bare metal) | Supported operating systems |
---|---|---|---|---|---|---|---|
Botan | C++11 | None | Thread-safe | Platform-dependent | Yes | Windows, Linux, macOS, Android, iOS, FreeBSD, OpenBSD, Solaris, AIX, HP-UX, QNX, BeOS, IncludeOS | |
BSAFE SSL-J | Java | Java SE network components | Thread-safe | Depends on java.security.SecureRandom | Yes | No | FreeBSD, Linux, macOS, Microsoft Windows, Android, AIX, Solaris |
cryptlib | C89 | POSIX send() and recv(). API to supply your own replacement | Thread-safe | Platform-dependent, including hardware sources | Yes | Yes | AMX, BeOS, ChorusOS, DOS, eCos, FreeRTOS/OpenRTOS, uItron, MVS, OS/2, Palm OS, QNX Neutrino, RTEMS, Tandem NonStop, ThreadX, uC/OS II, Unix (AIX, FreeBSD, HPUX, Linux, macOS, Solaris, etc.), VDK, VM/CMS, VxWorks, Win16, Win32, Win64, WinCE/PocketPC/etc, XMK |
GnuTLS | C89 | POSIX send() and recv(). API to supply your own replacement. | Thread-safe, needs custom mutex hooks if neither POSIX nor Windows threads are available. | Platform dependent | Yes | No | Generally any POSIX platforms or Windows, commonly tested platforms include Linux, Win32/64, macOS, Solaris, OpenWRT, FreeBSD, NetBSD, OpenBSD. |
JSSE | Java | Java SE network components | Thread-safe | Depends on java.security.SecureRandom | Yes | Java based, platform-independent | |
MatrixSSL | C89 | None | Thread-safe | Platform dependent | Yes | Yes | All |
Mbed TLS | C89 | POSIX read() and write(). API to supply your own replacement. | Threading layer available (POSIX or own hooks) | Random seed set through entropy pool | Yes | Yes | Known to work on: Win32/64, Linux, macOS, Solaris, FreeBSD, NetBSD, OpenBSD, OpenWRT, iPhone (iOS), Xbox, Android, eCos, SeggerOS, RISC OS |
NSS | C89, NSPR[237] | NSPR[237] PR_Send() and PR_Recv(). API to supply your own replacement. | Thread-safe | Platform dependent[238] | Yes (but cumbersome) | No | AIX, Android, FreeBSD, NetBSD, OpenBSD, BeOS, HP-UX, IRIX, Linux, macOS, OS/2, Solaris, OpenVMS, Amiga DE, Windows, WinCE, Sony PlayStation |
OpenSSL | C89 | None | Thread-safe | Platform dependent | Yes | No | Unix-like, DOS (with djgpp), Windows, OpenVMS, NetWare, eCos |
wolfSSL | C89 | POSIX send() and recv(). API to supply your own replacement. | Thread-safe | Random seed set through wolfCrypt | Yes | Yes | Win32/64, Linux, macOS, Solaris, ThreadX, VxWorks, FreeBSD, NetBSD, OpenBSD, embedded Linux, Yocto Project, OpenEmbedded, WinCE, Haiku, OpenWRT, iPhone (iOS), Android, Nintendo Wii and Gamecube through DevKitPro, QNX, MontaVista, NonStop, TRON/ITRON/µITRON, eCos, Micrium µC/OS-III, FreeRTOS, SafeRTOS, NXP/Freescale MQX, Nucleus, TinyOS, HP/UX, AIX, ARC MQX, Keil RTX, TI-RTOS, uTasker, embOS, INtime, Mbed, uT-Kernel, RIOT, CMSIS-RTOS, FROSTED, Green Hills INTEGRITY, TOPPERS, PetaLinux, Apache mynewt |
Implementation | Platform requirements | Network requirements | Thread safety | Random seed | Able to cross-compile | No OS (bare metal) | Supported operating systems |
See also
- SCTP — with DTLS support
- DCCP — with DTLS support
- SRTP — with DTLS support (DTLS-SRTP) and Secure Real-Time Transport Control Protocol (SRTCP)
References
- ↑ "Botan: Release Notes". https://botan.randombit.net/news.html#version-3-2-0-2023-10-09.
- ↑ "Release Notes - bouncycastle.org". 2023-11-13. https://www.bouncycastle.org/releasenotes.html.
- ↑ "Java LTS Resources - bouncycastle.org". 2024-01-22. https://www.bouncycastle.org/lts-java/.
- ↑ "Java FIPS Resources - bouncycastle.org". 2023-09-28. https://www.bouncycastle.org/fips-java/.
- ↑ "The Legion of the Bouncy Castle C# Cryptography APIs". 2023-04-21. https://www.bouncycastle.org/csharp/.
- ↑ "C# .NET FIPS Resources - bouncycastle.org". 2023-02-28. https://www.bouncycastle.org/fips-csharp/.
- ↑ "Dell BSAFE SSL-J 6.5.1 Release Advisory". https://www.dell.com/support/kbdoc/000215682/dell-bsafe-ssl-j-6-5-1-release-advisory.
- ↑ "Dell BSAFE SSL-J 7.2 Release Advisory". https://www.dell.com/support/kbdoc/000220635/dell-bsafe-ssl-j-7-2-release-advisory.
- ↑ "Dell BSAFE Micro Edition Suite 4.6.2 Release Advisory". https://www.dell.com/support/kbdoc/000212885.
- ↑ "Dell BSAFE Micro Edition Suite 5.0.2.1 Release Advisory". https://www.dell.com/support/kbdoc/000217723.
- ↑ Gutmann, Peter (2019). "Downloading". https://www.cs.auckland.ac.nz/~pgut001/cryptlib/download.html.
- ↑ "JDK Releases". https://java.com/releases/.
- ↑ "JDK Releases". https://java.com/releases/.
- ↑ The features listed are for the closed source version
- ↑ "MatrixSSL 4.2.2 Open release". 2019-09-11. https://github.com/matrixssl/matrixssl/releases/tag/4-2-2-open.
- ↑ 16.0 16.1 "NSS:Release versions". Mozilla Wiki. https://wiki.mozilla.org/NSS:Release_Versions.
- ↑ "wolfSSL product description". https://www.wolfssl.com/wolfSSL/Products-wolfssl.html. Retrieved 2016-05-03.
- ↑ "wolfSSL Embedded SSL/TLS". https://www.wolfssl.com. Retrieved 2016-05-03.
- ↑ "wolfSSL ChangeLog". 2023-10-31. https://www.wolfssl.com/docs/wolfssl-changelog/.
- ↑ Prohibiting Secure Sockets Layer (SSL) Version 2.0, doi:10.17487/RFC6176, RFC 6176, https://tools.ietf.org/html/rfc6176
- ↑ Vaudenay, Serge (2001). "CBC-Padding: Security Flaws in SSL, IPsec, WTLS,...". http://infoscience.epfl.ch/record/52417/files/IC_TECH_REPORT_200150.pdf.
- ↑ Encrypt-then-MAC for Transport Layer Security (TLS) and Datagram Transport Layer Security, doi:10.17487/RFC7366, RFC 7366, https://tools.ietf.org/html/rfc7366
- ↑ "Rizzo/Duong BEAST Countermeasures". https://www.educatedguesswork.org/2011/11/rizzoduong_beast_countermeasur.html.
- ↑ Möller, Bodo; Duong, Thai; Kotowicz, Krzysztof (September 2014). "This POODLE Bites: Exploiting The SSL 3.0 Fallback". https://www.openssl.org/~bodo/ssl-poodle.pdf.
- ↑ The Transport Layer Security (TLS) Protocol Version 1.2, sec. 1.2, doi:10.17487/RFC5246, RFC 5246, https://tools.ietf.org/html/rfc5246
- ↑ 26.0 26.1 26.2 RFC 6347
- ↑ 27.0 27.1 Elgamal, Taher; Hickman, Kipp E. B. (19 April 1995), The SSL Protocol, I-D draft-hickman-netscape-ssl-00, https://tools.ietf.org/html/draft-hickman-netscape-ssl-00
- ↑ 28.0 28.1 RFC 6101
- ↑ 29.0 29.1 RFC 2246
- ↑ 30.0 30.1 RFC 4346
- ↑ 31.00 31.01 31.02 31.03 31.04 31.05 31.06 31.07 31.08 31.09 31.10 31.11 RFC 5246
- ↑ 32.0 32.1 RFC 4347
- ↑ "Version 1.11.13, 2015-01-11 — Botan". 2015-01-11. Archived from the original on 2015-01-09. https://web.archive.org/web/20150109154102/http://botan.randombit.net/relnotes/1_11_13.html. Retrieved 2015-01-16.
- ↑ 34.0 34.1 34.2 "RSA BSAFE Technical Specification Comparison Tables". http://www.emc.com/collateral/data-sheet/11433-bsafe-tech-table.pdf.
- ↑ 35.0 35.1 35.2 35.3 35.4 35.5 "[gnutls-devel GnuTLS 3.4.0 released"]. 2015-04-08. http://lists.gnutls.org/pipermail/gnutls-devel/2015-April/007535.html. Retrieved 2015-04-16.
- ↑ "[gnutls-devel GnuTLS 3.6.3"]. 2018-07-16. https://lists.gnupg.org/pipermail/gnutls-devel/2018-July/008584.html. Retrieved 2018-09-16.
- ↑ "Java™ SE Development Kit 8, Update 31 Release Notes". https://www.oracle.com/java/technologies/javase/8u31-relnotes.html.
- ↑ 38.0 38.1 "Release Note: Disable TLS 1.0 and 1.1". https://bugs.openjdk.org/browse/JDK-8256490. Retrieved 2024-01-14.
- ↑ 39.00 39.01 39.02 39.03 39.04 39.05 39.06 39.07 39.08 39.09 39.10 39.11 39.12 "OpenBSD 5.6 Released". 2014-11-01. https://marc.info/?l=openbsd-announce&m=141486254309079. Retrieved 2015-01-20.
- ↑ "LibreSSL 2.3.0 Released". 2015-09-23. https://marc.info/?l=openbsd-announce&m=144304330731220. Retrieved 2015-09-24.
- ↑ "LibreSSL 3.3.3 Released". 2021-05-04. https://marc.info/?l=openbsd-announce&m=162009196519308. Retrieved 2021-05-04.
- ↑ "MatrixSSL - News". Archived from the original on 2015-02-14. https://web.archive.org/web/20150214105056/http://www.matrixssl.org/news.html. Retrieved 2014-11-09.
- ↑ 43.0 43.1 43.2 43.3 "Mbed TLS 3.0.0 branch released". 2021-07-07. https://github.com/ARMmbed/mbedtls/blob/93a3ca6caf20e0e1a90c86ee2fc03e9f1fb4ebfa/ChangeLog. Retrieved 2021-08-13.
- ↑ 44.0 44.1 44.2 44.3 "mbed TLS 2.0.0 released". 2015-07-10. https://tls.mbed.org/tech-updates/releases/mbedtls-2.0.0-released. Retrieved 2015-07-14.
- ↑ "NSS 3.19 release notes". Mozilla Developer Network. Mozilla. https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.19_release_notes. Retrieved 2015-05-06.
- ↑ 46.0 46.1 "NSS 3.14 release notes". Mozilla Developer Network. Mozilla. https://developer.mozilla.org/en-US/docs/NSS/NSS_3.14_release_notes. Retrieved 2012-10-27.
- ↑ "NSS 3.15.1 release notes". Mozilla Developer Network. Mozilla. https://developer.mozilla.org/en-US/docs/NSS/NSS_3.15.1_release_notes. Retrieved 2013-08-10.
- ↑ "NSS 3.39 release notes". Mozilla Developer Network. Mozilla. 2018-08-31. https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.39_release_notes#Notable_Changes_in_NSS_3.39. Retrieved 2018-09-15.
- ↑ "NSS 3.16.2 release notes". Mozilla Developer Network. Mozilla. 2014-06-30. https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.16.2_release_notes. Retrieved 2014-06-30.
- ↑ 50.00 50.01 50.02 50.03 50.04 50.05 50.06 50.07 50.08 50.09 50.10 50.11 50.12 "OpenSSL 1.1.0 Series Release Notes". https://www.openssl.org/news/openssl-1.1.0-notes.html.
- ↑ 51.0 51.1 "Major changes between OpenSSL 1.0.0h and OpenSSL 1.0.1 [14 Mar 2012"]. 2012-03-14. Archived from the original on December 5, 2014. https://web.archive.org/web/20141205180836/http://www.openssl.org/news/openssl-1.0.1-notes.html. Retrieved 2015-01-20.
- ↑ 52.0 52.1 52.2 52.3 52.4 52.5 "Major changes between OpenSSL 1.0.1l and OpenSSL 1.0.2 [22 Jan 2015"]. Archived from the original on September 4, 2014. https://web.archive.org/web/20140904045720/http://www.openssl.org/news/openssl-1.0.2-notes.html. Retrieved 2015-01-22.
- ↑ "S2N Readme". 2019-12-21. https://github.com/awslabs/s2n/blob/master/README.md.
- ↑ "TLS Cipher Suites (Windows)". 14 July 2023. http://msdn.microsoft.com/en-us/library/aa380512.aspx.
- ↑ 55.0 55.1 "TLS Cipher Suites in Windows Vista (Windows)". 25 October 2021. http://msdn.microsoft.com/en-us/library/ff468651.aspx.
- ↑ 56.0 56.1 56.2 "Cipher Suites in TLS/SSL (Schannel SSP) (Windows)". 14 July 2023. http://msdn.microsoft.com/en-us/library/aa374757.aspx.
- ↑ 57.0 57.1 "An update is available that adds support for DTLS in Windows 7 SP1 and Windows Server 2008 R2 SP1". Microsoft. http://support.microsoft.com/kb/2574819/en-us. Retrieved 13 November 2012.
- ↑ "Protocols in TLS/SSL (Schannel SSP)". Microsoft. 2022-05-25. https://learn.microsoft.com/en-us/windows/win32/secauthn/protocols-in-tls-ssl--schannel-ssp-. Retrieved 2023-11-18.
- ↑ "Protocols in TLS/SSL (Schannel SSP)". 25 May 2022. https://learn.microsoft.com/en-us/windows/win32/secauthn/protocols-in-tls-ssl--schannel-ssp-.
- ↑ "@badger: the 1.3 stuff is apparently in iOS 11 and macOS 10.13.". 2018-03-09. https://twitter.com/bagder/status/972234259774820352. Retrieved 2018-03-09.
- ↑ "[wolfssl wolfSSL 3.6.6 Released"]. 2015-08-20. http://wolfssl.com/wolfSSL/Blog/Entries/2015/8/24_wolfSSL_3.6.6_is_Now_Available.html. Retrieved 2015-08-24.
- ↑ "[wolfssl wolfSSL 3.13.0 Released"]. 2017-12-21. https://www.wolfssl.com/wolfssl-3-13-0-now-available/. Retrieved 2022-01-17.
- ↑ "Erlang -- Standards Compliance". https://www.erlang.org/doc/apps/ssl/standards_compliance.html.
- ↑ 64.0 64.1 64.2 "Security Enhancements in JDK 8". http://docs.oracle.com/javase/8/docs/technotes/guides/security/enhancements-8.html.
- ↑ "Bug 663320 - (NSA-Suite-B-TLS) Implement RFC6460 (NSA Suite B profile for TLS)". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=663320. Retrieved 2014-05-19.
- ↑ "Introducing Compliance to Suite B Cryptography". 18 September 2012. https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/dd566200(v=ws.10).
- ↑ "Speeds and Feeds › Secure or Compliant, Pick One". Archived from the original on December 27, 2013. https://web.archive.org/web/20131227190128/http://veridicalsystems.com/blog/secure-or-compliant-pick-one/.
- ↑ "Search - Cryptographic Module Validation Program - CSRC". http://csrc.nist.gov/groups/STM/cmvp/documents/140-1/140val-all.htm.
- ↑ ""Is botan FIPS 140 certified?" Frequently Asked Questions — Botan". http://botan.randombit.net/faq.html?highlight=fips#is-botan-fips-140-certified.
- ↑ "Search - Cryptographic Module Validation Program - CSRC". 11 October 2016. https://csrc.nist.gov/projects/cryptographic-module-validation-program/validated-modules/search.
- ↑ "cryptlib". 11 October 2013. http://www.cs.auckland.ac.nz/~pgut001/cryptlib/faq.html#Q8.
- ↑ "B.5 Certification". https://www.gnutls.org/manual/gnutls.html#Certification.
- ↑ "Matrix SSL Toolkit". http://cdn2.hubspot.net/hub/327778/file-618993629-pdf/Matrix+SSL-3.pdf.
- ↑ "Is mbed TLS FIPS certified? - Mbed TLS documentation". https://mbed-tls.readthedocs.io/en/latest/kb/generic/is-mbedtls-fips-certified/.
- ↑ "FIPS Validation - MozillaWiki". https://wiki.mozilla.org/FIPS_Validation.
- ↑ "OpenSSL and FIPS 140-2". https://www.openssl.org/docs/fips/fipsnotes.html.
- ↑ "Microsoft FIPS 140 Validated Cryptographic Modules". https://technet.microsoft.com/en-us/library/security/cc750357.aspx#_Microsoft_FIPS_140.
- ↑ "wolfCrypt FIPS 140-2 Information - wolfSSL Embedded SSL/TLS Library". http://www.wolfssl.com/yaSSL/fips.html.
- ↑ 79.00 79.01 79.02 79.03 79.04 79.05 79.06 79.07 79.08 79.09 79.10 79.11 79.12 79.13 79.14 79.15 79.16 79.17 79.18 79.19 79.20 79.21 79.22 79.23 79.24 79.25 79.26 79.27 79.28 79.29 79.30 79.31 79.32 79.33 RFC 4492
- ↑ 80.0 80.1 80.2 80.3 80.4 80.5 GOST 28147-89 Cipher Suites for Transport Layer Security (TLS), I-D draft-chudov-cryptopro-cptls-04, https://tools.ietf.org/html/draft-chudov-cryptopro-cptls-04
- ↑ 81.0 81.1 81.2 81.3 81.4 "LibreSSL 2.1.2 released". 2014-12-09. https://marc.info/?l=openbsd-announce&m=141809396501638. Retrieved 2015-01-20.
- ↑ "NSS 3.20 release notes". Mozilla. 2015-08-19. https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.20_release_notes. Retrieved 2015-08-20.
- ↑ 83.0 83.1 83.2 83.3 Mozilla.org. "Bug 518787 - Add GOST crypto algorithm support in NSS". https://bugzilla.mozilla.org/show_bug.cgi?id=518787. Retrieved 2014-07-01.
- ↑ 84.0 84.1 84.2 84.3 Mozilla.org. "Bug 608725 - Add Russian GOST cryptoalgorithms to NSS and Thunderbird". https://bugzilla.mozilla.org/show_bug.cgi?id=608725. Retrieved 2014-07-01.
- ↑ 85.0 85.1 85.2 85.3 "OpenSSL: CVS Web Interface". Archived from the original. Error: If you specify
|archiveurl=
, you must also specify|archivedate=
. https://archive.today/20130415122812/http://cvs.openssl.org/fileview?f=openssl%2Fengines%2Fccgost%2FREADME.gost. - ↑ 86.00 86.01 86.02 86.03 86.04 86.05 86.06 86.07 86.08 86.09 86.10 86.11 86.12 86.13 86.14 Extensions to support GOST in Schannel might be available.
- ↑ 87.0 87.1 87.2 87.3 "Microsoft Security Advisory 3174644". 14 October 2022. https://docs.microsoft.com/en-us/security-updates/SecurityAdvisories/2016/3174644.
- ↑ 88.0 88.1 88.2 "Microsoft Security Bulletin MS14-066 - Critical (Section Update FAQ)". Microsoft. November 11, 2014. https://technet.microsoft.com/library/security/MS14-066#ID0E5MAC. Retrieved 11 November 2014.
- ↑ 89.0 89.1 89.2 Thomlinson, Matt (November 11, 2014). "Hundreds of Millions of Microsoft Customers Now Benefit from Best-in-Class Encryption". Microsoft Security. http://blogs.microsoft.com/cybertrust/2014/11/11/hundreds-of-millions-of-microsoft-customers-now-benefit-from-best-in-class-encryption/. Retrieved 11 November 2014.
- ↑ 90.0 90.1 "Update adds new TLS cipher suites and changes cipher suite priorities in Windows 8.1 and Windows Server 2012 R2". https://support.microsoft.com/en-us/topic/update-adds-new-tls-cipher-suites-and-changes-cipher-suite-priorities-in-windows-8-1-and-windows-server-2012-r2-8e395e43-c8ef-27d8-b60c-0fc57d526d94.
- ↑ 91.0 91.1 91.2 91.3 91.4 91.5 RFC 5054
- ↑ 92.0 92.1 92.2 92.3 92.4 92.5 RFC 4279
- ↑ 93.0 93.1 RFC 5489
- ↑ 94.0 94.1 RFC 2712
- ↑ "RSA BSAFE SSL-J 6.2.4 Release Notes". 2018-09-05. https://community.rsa.com/docs/DOC-95884.
- ↑ 96.0 96.1 96.2 "LibreSSL 2.0.4 released". https://marc.info/?l=openbsd-tech&m=140710904403657. Retrieved 2014-08-04.
- ↑ 97.0 97.1 97.2 "Bug 405155 - add support for TLS-SRP, rfc5054". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=405155. Retrieved 2014-01-25.
- ↑ 98.0 98.1 98.2 98.3 "Bug 306435 - Mozilla browsers should support the new IETF TLS-PSK protocol to help reduce phishing". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=306435. Retrieved 2014-01-25.
- ↑ "Bug 1170510 - Implement NSS server side support for DH_anon". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=1170510. Retrieved 2015-06-03.
- ↑ "Bug 236245 - Update ECC/TLS to conform to RFC 4492". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=236245. Retrieved 2014-06-09.
- ↑ "Changes between 0.9.6h and 0.9.7 [31 Dec 2002"]. https://www.openssl.org/news/changelog.html#x58. Retrieved 2016-01-29.
- ↑ 102.0 102.1 "Changes between 0.9.8n and 1.0.0 [29 Mar 2010"]. https://www.openssl.org/news/changelog.html#x29. Retrieved 2016-01-29.
- ↑ "wolfSSL (Formerly CyaSSL) Release 3.9.0 (03/18/2016)". 2016-03-18. https://www.wolfssl.com/wolfSSL/Docs-wolfssl-changelog.html. Retrieved 2016-04-05.
- ↑ RFC 5280
- ↑ RFC 3280
- ↑ RFC 2560
- ↑ RFC 6698, RFC 7218
- ↑ Laurie, B.; Langley, A.; Kasper, E. (June 2013), Certificate Transparency, IETF, doi:10.17487/RFC6962, RFC 6962, ISSN 2070-1721, https://tools.ietf.org/html/rfc6962, retrieved 2020-08-31
- ↑ "MatrixSSL 3.8.3". http://www.matrixssl.org/blog/releases/matrixssl_3_8_3. Retrieved 2017-01-18.
- ↑ "mbed TLS 2.0 defaults implement best practices". https://tls.mbed.org/tech-updates/blog/mbedtls-2.0-defaults-best-practices. Retrieved 2017-01-18.
- ↑ "Bug 672600 - Use DNSSEC/DANE chain stapled into TLS handshake in certificate chain validation". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=672600. Retrieved 2014-06-18.
- ↑ "CRL Validation · Issue #3499 · aws/s2n-tls" (in en). https://github.com/aws/s2n-tls/issues/3499.
- ↑ "OCSP digest support for SHA-256 · Issue #2854 · aws/s2n-tls · GitHub" (in en). https://github.com/aws/s2n-tls/issues/2854.
- ↑ "[RFC 6962 s2n Client can Validate Signed Certificate Timestamp TLS Extension · Issue #457 · aws/s2n-tls · GitHub"] (in en). https://github.com/aws/s2n-tls/issues/457.
- ↑ 115.0 115.1 "How Certificate Revocation Works". Microsoft. March 16, 2012. https://technet.microsoft.com/en-us/library/ee619754(WS.10).aspx. Retrieved July 10, 2013.
- ↑ 116.0 116.1 RFC 5288, RFC 5289
- ↑ 117.0 117.1 RFC 6655, RFC 7251
- ↑ 118.0 118.1 RFC 6367
- ↑ 119.0 119.1 RFC 5932, RFC 6367
- ↑ 120.0 120.1 120.2 120.3 RFC 6209
- ↑ 121.0 121.1 RFC 4162
- ↑ 122.0 122.1 "Sweet32: Birthday attacks on 64-bit block ciphers in TLS and OpenVPN". https://sweet32.info/.
- ↑ 123.0 123.1 RFC 7905
- ↑ 124.0 124.1 "Version 1.11.12, 2015-01-02 — Botan". 2015-01-02. http://botan.randombit.net/relnotes/1_11_12.html. Retrieved 2015-01-09.
- ↑ "gnutls 3.6.0". 2017-09-21. https://lwn.net/Articles/731694/. Retrieved 2018-01-07.
- ↑ "gnutls 3.4.12". 2016-05-20. http://permalink.gmane.org/gmane.network.gnutls.general/4131. Retrieved 2016-05-29.
- ↑ "Java SE DevelopmentK Kit 10 - 10.0.1 Release Notes". 2018-04-17. https://www.oracle.com/java/technologies/javase/10-0-1-relnotes.html.
- ↑ "JDK 12 Release Notes". https://www.oracle.com/java/technologies/javase/12-relnote-issues.html.
- ↑ 129.0 129.1 129.2 129.3 "Changes in 3.8.3". https://github.com/matrixssl/matrixssl/blob/master/CHANGES.md#changes-in-383. Retrieved 2016-06-19.
- ↑ "PolarSSL 1.3.8 release notes". https://polarssl.org/tech-updates/releases/polarssl-1.3.8-released.
- ↑ 131.0 131.1 "Mbed TLS 2.11.0, 2.7.4 and 2.1.13 released". https://tls.mbed.org/tech-updates/releases/mbedtls-2.11.0-2.7.4-and-2.1.13-released. Retrieved 2018-08-30.
- ↑ "Mbed TLS 2.12.0, 2.7.5 and 2.1.14 released". https://tls.mbed.org/tech-updates/releases/mbedtls-2.12.0-2.7.5-and-2.1.14-released. Retrieved 2018-08-30.
- ↑ "NSS 3.25 release notes". Mozilla Developer Network. Mozilla. https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.25_release_notes. Retrieved 2016-07-01.
- ↑ "Bug 940119 - libssl does not support any TLS_ECDHE_*_CAMELLIA_*_GCM cipher suites". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=940119. Retrieved 2013-11-19.
- ↑ "NSS 3.12 is released". https://groups.google.com/forum/?hl=ja#!searchin/mozilla.dev.tech.crypto/camellia/mozilla.dev.tech.crypto/3NTvSYkF9MQ/O7Aj7oeiff8J. Retrieved 2013-11-19.
- ↑ "NSS 3.12.3 Release Notes". Mozilla Developer Network. Mozilla. https://firefox-source-docs.mozilla.org/security/nss/legacy/nss_releases/nss_3.12.3_release_notes/index.html.
- ↑ "NSS 3.23 release notes". Mozilla Developer Network. Mozilla. https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.23_release_notes. Retrieved 2016-03-09.
- ↑ "openssl/CHANGES at OpenSSL_1_0_1-stable · openssl/openssl". https://github.com/openssl/openssl/blob/OpenSSL_1_0_1-stable/CHANGES. Retrieved 2015-01-20.
- ↑ "/news/openssl-1.1.1-notes.html". https://www.openssl.org/news/openssl-1.1.1-notes.html.
- ↑ "Cipher Suites in TLS/SSL (Schannel SSP) - Win32 apps". 14 July 2023. https://docs.microsoft.com/en-us/windows/win32/secauthn/cipher-suites-in-schannel.
- ↑ 141.0 141.1 141.2 "Qualys SSL Labs - Projects / User Agent Capabilities: IE 11 / Win 10 Preview". https://dev.ssllabs.com/ssltest/viewClient.html?name=IE&version=11&platform=Win+10+Preview.
- ↑ RFC 5469
- ↑ 143.0 143.1 "Sweet32: Birthday attacks on 64-bit block ciphers in TLS and OpenVPN". https://sweet32.info.
- ↑ "Version 1.11.15, 2015-03-08 — Botan". 2015-03-08. http://botan.randombit.net/relnotes/1_11_15.html. Retrieved 2015-03-11.
- ↑ "Java Cryptography Architecture Oracle Providers Documentation". http://docs.oracle.com/javase/8/docs/technotes/guides/security/SunProviders.html.
- ↑ "NSS 3.15.3 release notes". Mozilla Developer Network. Mozilla. https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.15.3_release_notes. Retrieved 2014-07-13.
- ↑ "MFSA 2013-103: Miscellaneous Network Security Services (NSS) vulnerabilities". Mozilla. https://www.mozilla.org/security/announce/2013/mfsa2013-103.html. Retrieved 2014-07-13.
- ↑ 148.0 148.1 148.2 "RC4 is now disabled in Microsoft Edge and Internet Explorer 11 - Microsoft Edge Dev BlogMicrosoft Edge Dev Blog". 2016-08-09. https://blogs.windows.com/msedgedev/2016/08/09/rc4-now-deprecated/.
- ↑ 149.0 149.1 "wolfSSL (Formerly CyaSSL) Release 3.7.0 (10/26/2015)". 2015-10-26. https://www.wolfssl.com/wolfSSL/Docs-wolfssl-changelog.html. Retrieved 2015-11-19.
- ↑ 150.0 150.1 150.2 150.3 150.4 RFC 8446
- ↑ 151.0 151.1 151.2 151.3 151.4 RFC 8422
- ↑ 152.0 152.1 152.2 RFC 7027
- ↑ 153.0 153.1 153.2 "Version 1.11.5, 2013-11-10 — Botan". 2013-11-10. http://botan.randombit.net/relnotes/1_11_5.html. Retrieved 2015-01-23.
- ↑ "An overview of the new features in GnuTLS 3.5.0". 2016-05-02. http://nmav.gnutls.org/2016/05/gnutls-3-5-0.html. Retrieved 2016-12-09.
- ↑ "gnutls 3.6.12". 2020-02-01. https://lists.gnupg.org/pipermail/gnutls-help/2020-February/004621.html. Retrieved 2021-08-31.
- ↑ 156.0 156.1 "JDK 13 Early-Access Release Notes". https://jdk.java.net/13/release-notes. Retrieved 2019-06-20.
- ↑ 157.0 157.1 "JEP 339: Edwards-Curve Digital Signature Algorithm (EdDSA)". https://bugs.openjdk.org/browse/JDK-8199231.
- ↑ "LibreSSL 2.5.1 release notes". OpenBSD. 2017-01-31. https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.5.1-relnotes.txt. Retrieved 2017-02-23.
- ↑ "MatrixSSL 4.0 changelog". https://github.com/matrixssl/matrixssl/blob/4-0-0-open/doc/CHANGES_v4.0.md. Retrieved 2018-09-18.
- ↑ "PolarSSL 1.3.3 released". 2013-12-31. https://polarssl.org/tech-updates/releases/polarssl-1.3.3-released.
- ↑ "Mbed TLS 2.9.0, 2.7.3 and 2.1.12 released". https://tls.mbed.org/tech-updates/releases/mbedtls-2.9.0-2.7.3-and-2.1.12-released.
- ↑ 162.0 162.1 162.2 "PolarSSL 1.3.1 released". 2013-10-15. https://polarssl.org/tech-updates/releases/polarssl-1.3.1-released.
- ↑ "Bug 957105 - Add support for curve25519 Key Exchange and UMAC MAC support for TLS". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=957105. Retrieved 2017-02-23.
- ↑ "Bug 1305243 - Support for X448". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=1305243. Retrieved 2022-08-04.
- ↑ "Bug 1597057 - Curve448 or named Ed448-Goldilocks support needed (both X448 key exchange and Ed448 signature algorithm )". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=1597057. Retrieved 2022-08-04.
- ↑ 166.0 166.1 166.2 "Bug 943639 - Support for Brainpool ECC Curve (rfc5639)". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=943639. Retrieved 2014-01-25.
- ↑ "OpenSSL 1.1.0x Release Notes". 25 August 2016. https://www.openssl.org/news/cl110.txt.
- ↑ "OpenSSL GitHub Issue #487 Tracker". 2 December 2015. https://github.com/openssl/openssl/issues/487.
- ↑ "OpenSSL 1.1.1x Release Notes". 1 May 2018. https://www.openssl.org/news/cl111.txt.
- ↑ "OpenSSL GitHub Issue #5049 Tracker". 9 January 2018. https://github.com/openssl/openssl/issues/5049.
- ↑ "wolfSSL (Formerly CyaSSL) Release 3.4.6 (03/30/2015)". 2015-03-30. https://www.wolfssl.com/wolfSSL/Docs-wolfssl-changelog.html. Retrieved 2015-11-19.
- ↑ "wolfSSL Release 4.4.0 (04/22/2020)". 2020-04-22. https://www.wolfssl.com/wolfSSL/Docs-wolfssl-changelog.html. Retrieved 2022-10-18.
- ↑ 173.0 173.1 173.2 173.3 173.4 173.5 173.6 173.7 173.8 Simon, Josefsson; Manuel, Pégourié-Gonnard, Additional Elliptic Curves for Transport Layer Security (TLS) Key Agreement, I-D draft-josefsson-tls-additional-curves, https://tools.ietf.org/html/draft-josefsson-tls-additional-curves
- ↑ "Release Note: Weak Named Curves in TLS, CertPath, and Signed JAR Disabled by Default. (Java 7u281, 8u271, 11.0.9, 14)". https://bugs.openjdk.java.net/browse/JDK-8236730.
- ↑ "Release Note: Removal of Legacy Elliptic Curves (Java 16)". https://bugs.openjdk.java.net/browse/JDK-8235710.
- ↑ 176.0 176.1 Negotiation of arbitrary curves has been shown to be insecure for certain curve sizes Mavrogiannopoulos, Nikos and Vercautern, Frederik and Velichkov, Vesselin and Preneel, Bart (2012). "A cross-protocol attack on the TLS protocol". Association for Computing Machinery. pp. 62–72. doi:10.1145/2382196.2382206. ISBN 978-1-4503-1651-4. https://www.cosic.esat.kuleuven.be/publications/article-2216.pdf.
- ↑ "SHA2 and Windows". http://blogs.technet.com/b/pki/archive/2010/09/30/sha2-and-windows.aspx. Retrieved 2014-09-08.
- ↑ RFC 3749
- ↑ RFC 5746
- ↑ 180.0 180.1 180.2 180.3 RFC 6066
- ↑ RFC 7301
- ↑ RFC 6091
- ↑ RFC 4680
- ↑ RFC 5077
- ↑ RFC 5705
- ↑ RFC 7366
- ↑ RFC 7507
- ↑ RFC 7627
- ↑ RFC 7685
- ↑ RFC 7250
- ↑ "Version 1.11.16, 2015-03-29 — Botan". 2016-03-29. https://botan.randombit.net/news.html#version-1-11-16-2015-03-29. Retrieved 2016-09-08.
- ↑ "Version 1.11.10, 2014-12-10 — Botan". 2014-12-10. http://botan.randombit.net/relnotes/1_11_10.html. Retrieved 2014-12-14.
- ↑ 193.0 193.1 "Version 1.11.26, 2016-01-04 — Botan". 2016-01-04. http://botan.randombit.net/news.html#version-1-11-26-2016-01-04. Retrieved 2016-02-25.
- ↑ Present, but disabled by default due to lack of use by any implementation.
- ↑ "gnutls 3.2.0". http://article.gmane.org/gmane.network.gnutls.general/3136. Retrieved 2015-01-26.
- ↑ Mavrogiannopoulos, Nikos (August 21, 2017). "[gnutls-help GnuTLS 3.6.0 released"]. https://lists.gnupg.org/pipermail/gnutls-help/2017-August/004364.html.
- ↑ "gnutls 3.4.4". http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/8267. Retrieved 2015-08-25.
- ↑ "%DUMBFW priority keyword". https://gnutls.org/manual/html_node/Priority-Strings.html. Retrieved 2017-04-30.
- ↑ "gnutls 3.6.6". 2019-01-25. https://lists.gnupg.org/pipermail/gnutls-help/2019-January/004484.html. Retrieved 2019-09-01.
- ↑ "LibreSSL 2.1.3 released". 2015-01-22. https://marc.info/?l=openbsd-announce&m=142193407304782. Retrieved 2015-01-22.
- ↑ "LibreSSL 2.1.4 released". 2015-03-04. https://marc.info/?l=openbsd-announce&m=142543818707898. Retrieved 2015-03-04.
- ↑ "MatrixSSL - News". 2014-12-04. Archived from the original on 2015-02-14. https://web.archive.org/web/20150214105056/http://www.matrixssl.org/news.html. Retrieved 2015-01-26.
- ↑ "Download overview - PolarSSL". 2014-04-11. https://polarssl.org/tech-updates/releases/polarssl-1.3.6-released.
- ↑ 204.0 204.1 204.2 "mbed TLS 1.3.10 released". 2015-02-08. https://polarssl.org/tech-updates/releases/mbedtls-1.3.10-released.
- ↑ 205.0 205.1 "NSS 3.15.5 release notes". Mozilla Developer Network. Mozilla. https://developer.mozilla.org/en-US/docs/NSS/NSS_3.15.5_release_notes. Retrieved 2015-01-26.
- ↑ "Bug 961416 - Support RFC6091 - Using OpenPGP Keys for Transport Layer Security Authentication (TLS1.2)". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=961416. Retrieved 2014-06-18.
- ↑ "Bug 972145 - Implement the encrypt-then-MAC TLS extension". Mozilla. https://bugzilla.mozilla.org/show_bug.cgi?id=972145. Retrieved 2014-11-06.
- ↑ "NSS 3.17.1 release notes". https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.17.1_release_notes. Retrieved 2014-10-17.
- ↑ "NSS 3.21 release notes". https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.21_release_notes. Retrieved 2015-11-14.
- ↑ "OpenSSL Security Advisory [15 Oct 2014"]. 2014-10-15. https://www.openssl.org/news/secadv/20141015.txt.
- ↑ "Major changes between OpenSSL 1.0.1f and OpenSSL 1.0.1g [7 Apr 2014"]. 2014-04-07. https://www.openssl.org/news/openssl-1.0.1-notes.html. Retrieved 2015-02-10.
- ↑ "OpenSSL Announces Final Release of OpenSSL 3.2.0". 2023-11-23. https://www.openssl.org/blog/blog/2023/11/23/OpenSSL32/index.html.
- ↑ 213.0 213.1 213.2 213.3 "Microsoft Security Bulletin MS15-121". https://docs.microsoft.com/en-us/security-updates/SecurityBulletins/2015/ms15-121. Retrieved 2017-11-29.
- ↑ 214.0 214.1 "What's New in TLS/SSL (Schannel SSP)". https://technet.microsoft.com/en-us/library/hh831771.aspx. Retrieved 2014-06-18.
- ↑ "wolfSSL Version 4.2.0 is Now Available!". 22 October 2019. https://www.wolfssl.com/wolfssl-version-4-2-0-now-available/. Retrieved 2021-08-13.
- ↑ "Version 1.11.31, 2015-08-30 — Botan". 2016-08-30. https://botan.randombit.net/news.html#version-1-11-31-2016-08-30. Retrieved 2016-09-08.
- ↑ "JEP 164: Leverage CPU Instructions for AES Cryptography". http://openjdk.java.net/jeps/164.
- ↑ "RSA SecurID PASSCODE Request". https://sso.rsasecurity.com/sso/SSO?SPEntityID=rsalink&redirectreason=permissiondenied&referer=https%3A%2F%2Fcommunity.rsa.com%2Ft5%2Frsa-bsafe-archived-resources%2Frsa-bsafe-ssl-j-6-2-5-release-notes%2Fta-p%2F566951.
- ↑ Mavrogiannopoulos, Nikos (October 9, 2016). "[gnutls-devel gnutls 3.5.5"]. https://lists.gnupg.org/pipermail/gnutls-devel/2016-October/008194.html.
- ↑ "Java SSL provider with AES-NI support". https://stackoverflow.com/questions/14259671/java-ssl-provider-with-aes-ni-support.
- ↑ "PolarSSL 1.3.3 released". 2013-12-31. https://polarssl.org/tech-updates/releases/polarssl-1.3.3-released. "We've incorporated support for AES-NI in our AES and GCM modules."
- ↑ Normally NSS's libssl performs all operations via the PKCS#11 interface, either to hardware or software tokens
- ↑ "Bug 706024 - AES-NI enhancements to NSS on Sandy Bridge systems". https://bugzilla.mozilla.org/show_bug.cgi?id=706024. Retrieved 2013-09-28.
- ↑ "Bug 479744 - RFE : VIA Padlock ACE support (hardware RNG, AES, SHA1 and SHA256)". https://bugzilla.mozilla.org/show_bug.cgi?id=479744. Retrieved 2014-04-11.
- ↑ https://habrahabr.ru/post/134725/, http://forum.rutoken.ru/topic/1639/, https://dev.rutoken.ru/pages/viewpage.action?pageId=18055184 (in Russian)
- ↑ "git.openssl.org Git - openssl.git/commitdiff". http://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=ddacb8f27ba4c8a8d51c306c150e1a8703b008f2.
- ↑ https://opensource.apple.com/source/Security/Security-55179.13/sec/Security/SecECKey.c
- ↑ "Crypto Officer Role Guide for FIPS 140-2 Compliance OS X Mountain Lion v10.8". Apple Inc.. 2013. http://km.support.apple.com/library/APPLE/APPLECARE_ALLGEOS/HT5396/Crypto_Officer_Role_Guide_for_FIPS_140-2_Compliance_OS_X_Mountain_Lion_v10.8.pdf.
- ↑ "wolfSSL Asynchronous Intel QuickAssist Support - wolfSSL". 18 January 2017. https://www.wolfssl.com/wolfSSL/Blog/Entries/2017/1/18_wolfSSL_Asynchronous_Intel_QuickAssist_Support.html.
- ↑ "CAAM support in wolfSSL". 10 March 2020. https://community.nxp.com/t5/i-MX-Processors/CAAM-support-in-wolfSSL/m-p/1013736.
- ↑ "LibreSSL 2.2.1 Released". 2015-07-08. http://marc.info/?l=openbsd-announce&m=143635991232240. Retrieved 2016-01-30.
- ↑ "wolfProvider". 2021-11-10. https://www.wolfssl.com/wolfengine-openssl-provider-solution-now-public/. Retrieved 2022-01-17.
- ↑ 233.0 233.1 The PKCS #11 URI Scheme, doi:10.17487/RFC7512, RFC 7512, https://tools.ietf.org/html/rfc7512
- ↑ "libp11: PKCS#11 wrapper library". 19 January 2018. https://github.com/OpenSC/libp11.
- ↑ On the fly replaceable/augmentable.
- ↑ "Nss compat ossl - Fedora Project Wiki". http://fedoraproject.org/wiki/Nss_compat_ossl.
- ↑ 237.0 237.1 "NSPR". https://www.mozilla.org/projects/nspr/.
- ↑ For Unix/Linux it uses /dev/urandom if available, for Windows it uses CAPI. For other platforms it gets data from clock, and tries to open system files. NSS has a set of platform dependent functions it uses to determine randomness.
Original source: https://en.wikipedia.org/wiki/Comparison of TLS implementations.
Read more |