summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp
diff options
context:
space:
mode:
authortb <>2021-12-12 21:27:38 +0000
committertb <>2021-12-12 21:27:38 +0000
commita0b1347b1dec62a1a5e864ed59314d2e9b42e15b (patch)
tree110aa6f619f19831c621f32e98d757ca15d75e3e /src/lib/libcrypto/evp
parentef37d8e11b67b24d718fb50ca36b24bf266259ad (diff)
downloadopenbsd-a0b1347b1dec62a1a5e864ed59314d2e9b42e15b.tar.gz
openbsd-a0b1347b1dec62a1a5e864ed59314d2e9b42e15b.tar.bz2
openbsd-a0b1347b1dec62a1a5e864ed59314d2e9b42e15b.zip
Add a mostly empty hmac_local.h. HMAC_CTX and a few other things
from hmac.h will be moved there in an umpcoming bump. Include this file where it will be needed. ok inoguchi
Diffstat (limited to 'src/lib/libcrypto/evp')
-rw-r--r--src/lib/libcrypto/evp/p5_crpt2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/p5_crpt2.c b/src/lib/libcrypto/evp/p5_crpt2.c
index 4bef287706..f3585ff34b 100644
--- a/src/lib/libcrypto/evp/p5_crpt2.c
+++ b/src/lib/libcrypto/evp/p5_crpt2.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: p5_crpt2.c,v 1.23 2017/01/29 17:49:23 beck Exp $ */ 1/* $OpenBSD: p5_crpt2.c,v 1.24 2021/12/12 21:27:37 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 1999. 3 * project 1999.
4 */ 4 */
@@ -70,6 +70,7 @@
70#include <openssl/x509.h> 70#include <openssl/x509.h>
71 71
72#include "evp_locl.h" 72#include "evp_locl.h"
73#include "hmac_local.h"
73 74
74/* This is an implementation of PKCS#5 v2.0 password based encryption key 75/* This is an implementation of PKCS#5 v2.0 password based encryption key
75 * derivation function PBKDF2. 76 * derivation function PBKDF2.