diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-07-09 16:47:37 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-07-09 16:47:37 +0000 |
commit | a09e7ba366c7d57fdd0f032225a8a4a7fb906045 (patch) | |
tree | a31b0e24dccb4e6478ca7580572c04e0a1f39546 /lib | |
parent | 0ba6eff95bb232657b68242ea00413e8f6a78042 (diff) |
Remove a few useless comments
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/kdf/tls1_prf.c | 7 |
1 files changed, 1 insertions, 6 deletions
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; |