From 2bc8ee653517f61c047d3519d451fbc718a6313d Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Mon, 21 Dec 2020 15:05:43 +0300 Subject: QUIC: converted to SSL_CIPHER_get_protocol_id(). This API is available in BoringSSL for quite some time: https://boringssl.googlesource.com/boringssl/+/3743aaf --- src/event/ngx_event_quic_protection.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/event/ngx_event_quic_protection.c b/src/event/ngx_event_quic_protection.c index db9068d69..401b71121 100644 --- a/src/event/ngx_event_quic_protection.c +++ b/src/event/ngx_event_quic_protection.c @@ -655,11 +655,7 @@ int ngx_quic_keys_set_encryption_secret(ngx_pool_t *pool, ngx_uint_t is_write, peer_secret = is_write ? &keys->secrets[level].server : &keys->secrets[level].client; - /* - * SSL_CIPHER_get_protocol_id() is not universally available, - * casting to uint16_t works for both OpenSSL and BoringSSL - */ - keys->cipher = (uint16_t) SSL_CIPHER_get_id(cipher); + keys->cipher = SSL_CIPHER_get_protocol_id(cipher); key_len = ngx_quic_ciphers(keys->cipher, &ciphers, level); -- cgit