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/rsa/rsa_pss.c | |
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/rsa/rsa_pss.c')
-rw-r--r-- | lib/libcrypto/rsa/rsa_pss.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/rsa/rsa_pss.c b/lib/libcrypto/rsa/rsa_pss.c index 562f7b252c9..85ce7626431 100644 --- a/lib/libcrypto/rsa/rsa_pss.c +++ b/lib/libcrypto/rsa/rsa_pss.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rsa_pss.c,v 1.13 2018/09/05 00:55:33 djm Exp $ */ +/* $OpenBSD: rsa_pss.c,v 1.14 2021/12/12 21:30:14 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2005. */ @@ -66,6 +66,8 @@ #include <openssl/rsa.h> #include <openssl/sha.h> +#include "evp_locl.h" + static const unsigned char zeroes[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; int |