ciphers_v13.inc (538B)
1 /* Here are the TLS1.3 ciphers. Note that we don't have XCIPHER instances 2 * here, since we don't want to ever fake them. 3 * 4 * This matches Firefox's list: 5 * https://searchfox.org/mozilla-central/source/security/nss/lib/ssl/ssl3con.c#100 6 */ 7 #ifdef TLS1_3_RFC_AES_128_GCM_SHA256 8 CIPHER(0x1301, TLS1_3_RFC_AES_128_GCM_SHA256) 9 #endif 10 #ifdef TLS1_3_RFC_CHACHA20_POLY1305_SHA256 11 CIPHER(0x1303, TLS1_3_RFC_CHACHA20_POLY1305_SHA256) 12 #endif 13 #ifdef TLS1_3_RFC_AES_256_GCM_SHA384 14 CIPHER(0x1302, TLS1_3_RFC_AES_256_GCM_SHA384) 15 #endif