From c24a1461bc45aa94b63f2258d0e9aa71e82610c3 Mon Sep 17 00:00:00 2001 From: Andrew Kozlik Date: Fri, 11 Aug 2023 17:56:20 +0200 Subject: [PATCH] fixup! feat(crypto): Implement TLS PRF with SHA-256. --- crypto/tls_prf.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crypto/tls_prf.c b/crypto/tls_prf.c index 529094d4a..32b58b613 100644 --- a/crypto/tls_prf.c +++ b/crypto/tls_prf.c @@ -20,6 +20,11 @@ * OTHER DEALINGS IN THE SOFTWARE. */ +/* + * For a specification of TLS-PRF see + * https://datatracker.ietf.org/doc/html/rfc5246#section-5 + */ + #include #include "hmac.h"