From: tb Date: Tue, 9 Jul 2024 16:47:36 +0000 (+0000) Subject: Remove a few useless comments X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=9db60e48d2bea97b07e19743a91151c50d99be8f;p=openbsd Remove a few useless comments --- diff --git a/lib/libcrypto/kdf/tls1_prf.c b/lib/libcrypto/kdf/tls1_prf.c index cc3f27f3c91..837416c640c 100644 --- a/lib/libcrypto/kdf/tls1_prf.c +++ b/lib/libcrypto/kdf/tls1_prf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls1_prf.c,v 1.15 2024/07/09 16:46:33 tb Exp $ */ +/* $OpenBSD: tls1_prf.c,v 1.16 2024/07/09 16:47:36 tb Exp $ */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project * 2016. @@ -74,15 +74,10 @@ static int tls1_prf_alg(const EVP_MD *md, #define TLS1_PRF_MAXBUF 1024 -/* TLS KDF pkey context structure */ - typedef struct { - /* Digest to use for PRF */ const EVP_MD *md; - /* Secret value to use for PRF */ unsigned char *sec; size_t seclen; - /* Buffer of concatenated seed data */ unsigned char seed[TLS1_PRF_MAXBUF]; size_t seedlen; } TLS1_PRF_PKEY_CTX;