diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2023-06-16 17:13:29 +0400 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2023-06-16 17:13:29 +0400 |
commit | b051754d9d6548e870ce6085d13402c9a3e06d3c (patch) | |
tree | 33264d18860408a7f74e4f643e79009f650d4aa7 /src | |
parent | dc9017ee482ef2ffad822942f78c07ee210b205a (diff) | |
download | nginx-b051754d9d6548e870ce6085d13402c9a3e06d3c.tar.gz nginx-b051754d9d6548e870ce6085d13402c9a3e06d3c.zip |
QUIC: removed TLS1_3_CK_* macros wrap up.
They were preserved in 172705615d04 to ease transition from older BoringSSL.
Diffstat (limited to 'src')
-rw-r--r-- | src/event/quic/ngx_event_quic_protection.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/event/quic/ngx_event_quic_protection.c b/src/event/quic/ngx_event_quic_protection.c index 9e731e391..ecac6f578 100644 --- a/src/event/quic/ngx_event_quic_protection.c +++ b/src/event/quic/ngx_event_quic_protection.c @@ -15,13 +15,6 @@ #define NGX_QUIC_AES_128_KEY_LEN 16 -#ifndef TLS1_3_CK_AES_128_GCM_SHA256 -#define TLS1_3_CK_AES_128_GCM_SHA256 0x03001301 -#define TLS1_3_CK_AES_256_GCM_SHA384 0x03001302 -#define TLS1_3_CK_CHACHA20_POLY1305_SHA256 \ - 0x03001303 -#endif - static ngx_int_t ngx_hkdf_expand(u_char *out_key, size_t out_len, const EVP_MD *digest, const u_char *prk, size_t prk_len, |