diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-07-09 17:58:37 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-07-09 17:58:37 +0000 |
commit | cd9424415207b82596002a7938132ce060fc29b4 (patch) | |
tree | 177a748723a928a962d257260ffbf2e5a8a83f5f /lib | |
parent | 1abddca022ce9bb162652621853f656835b60409 (diff) |
Add another empty line
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/kdf/tls1_prf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/kdf/tls1_prf.c b/lib/libcrypto/kdf/tls1_prf.c index 7c07e23bbb0..9d2f7771994 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.38 2024/07/09 17:56:41 tb Exp $ */ +/* $OpenBSD: tls1_prf.c,v 1.39 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); } |