From: Frédéric Lécaille Date: Tue, 6 Jul 2021 15:08:04 +0000 (+0200) Subject: MINOR: quic_tls: Make use of the QUIC V1 salt. X-Git-Tag: v2.5-dev8~104 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98ad56a04980ba4cde83c16dbc57bdb57b4fa16b;p=thirdparty%2Fhaproxy.git MINOR: quic_tls: Make use of the QUIC V1 salt. This salt is used to derive the Initial secrets. --- diff --git a/src/quic_tls.c b/src/quic_tls.c index c27946a438..11d5875dae 100644 --- a/src/quic_tls.c +++ b/src/quic_tls.c @@ -228,7 +228,7 @@ int quic_derive_initial_secret(const EVP_MD *md, const unsigned char *secret, size_t secret_sz) { if (!quic_hkdf_extract(md, initial_secret, &initial_secret_sz, secret, secret_sz, - initial_salt, sizeof initial_salt)) + initial_salt_v1, sizeof initial_salt_v1)) return 0; return 1;