diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-12-12 21:30:15 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-12-12 21:30:15 +0000 |
commit | 5bed0d16fe0cc252bb6b0331b588dc6b5c1eef52 (patch) | |
tree | 87d81e92092afd5c7b84e47f045771e2f0d46f2f /lib/libcrypto/hmac | |
parent | 1b6ffd98275fe29678f58b934b76998cc2b2f18e (diff) |
Include evp_locl.h where it will be needed once most structs from
evp.h will be moved to evp_locl.h in an upcoming bump.
ok inoguchi
Diffstat (limited to 'lib/libcrypto/hmac')
-rw-r--r-- | lib/libcrypto/hmac/hm_ameth.c | 3 | ||||
-rw-r--r-- | lib/libcrypto/hmac/hmac.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/libcrypto/hmac/hm_ameth.c b/lib/libcrypto/hmac/hm_ameth.c index ebbcab5ac26..84bb5f0c073 100644 --- a/lib/libcrypto/hmac/hm_ameth.c +++ b/lib/libcrypto/hmac/hm_ameth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hm_ameth.c,v 1.11 2021/12/12 21:27:38 tb Exp $ */ +/* $OpenBSD: hm_ameth.c,v 1.12 2021/12/12 21:30:14 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2007. */ @@ -63,6 +63,7 @@ #include <openssl/hmac.h> #include "asn1_locl.h" +#include "evp_locl.h" #include "hmac_local.h" #define HMAC_TEST_PRIVATE_KEY_FORMAT diff --git a/lib/libcrypto/hmac/hmac.c b/lib/libcrypto/hmac/hmac.c index a3eb7666e94..55989988add 100644 --- a/lib/libcrypto/hmac/hmac.c +++ b/lib/libcrypto/hmac/hmac.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hmac.c,v 1.26 2021/12/12 21:27:38 tb Exp $ */ +/* $OpenBSD: hmac.c,v 1.27 2021/12/12 21:30:14 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -63,6 +63,7 @@ #include <openssl/err.h> #include <openssl/hmac.h> +#include "evp_locl.h" #include "hmac_local.h" int |