artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d694cdf
)
Add another empty line
author
tb
<tb@openbsd.org>
Tue, 9 Jul 2024 17:58:36 +0000
(17:58 +0000)
committer
tb
<tb@openbsd.org>
Tue, 9 Jul 2024 17:58:36 +0000
(17:58 +0000)
lib/libcrypto/kdf/tls1_prf.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/kdf/tls1_prf.c
b/lib/libcrypto/kdf/tls1_prf.c
index
7c07e23
..
9d2f777
100644
(file)
--- a/
lib/libcrypto/kdf/tls1_prf.c
+++ b/
lib/libcrypto/kdf/tls1_prf.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: tls1_prf.c,v 1.3
8 2024/07/09 17:56:41
tb Exp $ */
+/* $OpenBSD: tls1_prf.c,v 1.3
9 2024/07/09 17:58:36
tb Exp $ */
/*
* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
* 2016.
@@
-308,6
+308,7
@@
pkey_tls1_prf_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *key_len)
KDFerror(KDF_R_MISSING_SEED);
return 0;
}
+
return tls1_prf_alg(kctx->md, kctx->secret, kctx->secret_len,
kctx->seed, kctx->seed_len, key, *key_len);
}