summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-07-09 16:47:37 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-07-09 16:47:37 +0000
commita09e7ba366c7d57fdd0f032225a8a4a7fb906045 (patch)
treea31b0e24dccb4e6478ca7580572c04e0a1f39546
parent0ba6eff95bb232657b68242ea00413e8f6a78042 (diff)
Remove a few useless comments
-rw-r--r--lib/libcrypto/kdf/tls1_prf.c7
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;