| ... | @@ -290,7 +290,7 @@ pub const CipherSuite = enum(u16) { | ... | @@ -290,7 +290,7 @@ pub const CipherSuite = enum(u16) { |
| 290 | CHACHA20_POLY1305_SHA256 = 0x1303, | 290 | CHACHA20_POLY1305_SHA256 = 0x1303, |
| 291 | AES_128_CCM_SHA256 = 0x1304, | 291 | AES_128_CCM_SHA256 = 0x1304, |
| 292 | AES_128_CCM_8_SHA256 = 0x1305, | 292 | AES_128_CCM_8_SHA256 = 0x1305, |
| 293 | AEGIS_256_SHA384 = 0x1306, | 293 | AEGIS_256_SHA512 = 0x1306, |
| 294 | AEGIS_128L_SHA256 = 0x1307, | 294 | AEGIS_128L_SHA256 = 0x1307, |
| 295 | _, | 295 | _, |
| 296 | }; | 296 | }; |
| ... | @@ -330,7 +330,7 @@ pub const HandshakeCipher = union(enum) { | ... | @@ -330,7 +330,7 @@ pub const HandshakeCipher = union(enum) { |
| 330 | AES_128_GCM_SHA256: HandshakeCipherT(crypto.aead.aes_gcm.Aes128Gcm, crypto.hash.sha2.Sha256), | 330 | AES_128_GCM_SHA256: HandshakeCipherT(crypto.aead.aes_gcm.Aes128Gcm, crypto.hash.sha2.Sha256), |
| 331 | AES_256_GCM_SHA384: HandshakeCipherT(crypto.aead.aes_gcm.Aes256Gcm, crypto.hash.sha2.Sha384), | 331 | AES_256_GCM_SHA384: HandshakeCipherT(crypto.aead.aes_gcm.Aes256Gcm, crypto.hash.sha2.Sha384), |
| 332 | CHACHA20_POLY1305_SHA256: HandshakeCipherT(crypto.aead.chacha_poly.ChaCha20Poly1305, crypto.hash.sha2.Sha256), | 332 | CHACHA20_POLY1305_SHA256: HandshakeCipherT(crypto.aead.chacha_poly.ChaCha20Poly1305, crypto.hash.sha2.Sha256), |
| 333 | AEGIS_256_SHA384: HandshakeCipherT(crypto.aead.aegis.Aegis256, crypto.hash.sha2.Sha384), | 333 | AEGIS_256_SHA512: HandshakeCipherT(crypto.aead.aegis.Aegis256, crypto.hash.sha2.Sha512), |
| 334 | AEGIS_128L_SHA256: HandshakeCipherT(crypto.aead.aegis.Aegis128L, crypto.hash.sha2.Sha256), | 334 | AEGIS_128L_SHA256: HandshakeCipherT(crypto.aead.aegis.Aegis128L, crypto.hash.sha2.Sha256), |
| 335 | }; | 335 | }; |
| 336 | | 336 | |
| ... | @@ -355,7 +355,7 @@ pub const ApplicationCipher = union(enum) { | ... | @@ -355,7 +355,7 @@ pub const ApplicationCipher = union(enum) { |
| 355 | AES_128_GCM_SHA256: ApplicationCipherT(crypto.aead.aes_gcm.Aes128Gcm, crypto.hash.sha2.Sha256), | 355 | AES_128_GCM_SHA256: ApplicationCipherT(crypto.aead.aes_gcm.Aes128Gcm, crypto.hash.sha2.Sha256), |
| 356 | AES_256_GCM_SHA384: ApplicationCipherT(crypto.aead.aes_gcm.Aes256Gcm, crypto.hash.sha2.Sha384), | 356 | AES_256_GCM_SHA384: ApplicationCipherT(crypto.aead.aes_gcm.Aes256Gcm, crypto.hash.sha2.Sha384), |
| 357 | CHACHA20_POLY1305_SHA256: ApplicationCipherT(crypto.aead.chacha_poly.ChaCha20Poly1305, crypto.hash.sha2.Sha256), | 357 | CHACHA20_POLY1305_SHA256: ApplicationCipherT(crypto.aead.chacha_poly.ChaCha20Poly1305, crypto.hash.sha2.Sha256), |
| 358 | AEGIS_256_SHA384: ApplicationCipherT(crypto.aead.aegis.Aegis256, crypto.hash.sha2.Sha384), | 358 | AEGIS_256_SHA512: ApplicationCipherT(crypto.aead.aegis.Aegis256, crypto.hash.sha2.Sha512), |
| 359 | AEGIS_128L_SHA256: ApplicationCipherT(crypto.aead.aegis.Aegis128L, crypto.hash.sha2.Sha256), | 359 | AEGIS_128L_SHA256: ApplicationCipherT(crypto.aead.aegis.Aegis128L, crypto.hash.sha2.Sha256), |
| 360 | }; | 360 | }; |
| 361 | | 361 | |