commit | 98ad56a04980ba4cde83c16dbc57bdb57b4fa16b | [log] [tgz] |
---|---|---|
author | Frédéric Lécaille <flecaille@haproxy.com> | Tue Jul 06 17:08:04 2021 +0200 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Thu Sep 23 15:27:25 2021 +0200 |
tree | f33c1a26403256ab2ffd17047086f3518d0e87a8 | |
parent | c5b0c93c263b01b440395b29b4c875183acaedfd [diff] |
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 c27946a..11d5875 100644 --- a/src/quic_tls.c +++ b/src/quic_tls.c
@@ -228,7 +228,7 @@ 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;