diff options
author | tb <> | 2021-12-12 21:30:14 +0000 |
---|---|---|
committer | tb <> | 2021-12-12 21:30:14 +0000 |
commit | b632ec4f99386efc52214c580c9f233748302224 (patch) | |
tree | 68f1da62b9246ae5a21e41ac2ee05ee8307cfa6f /src/lib/libcrypto/rsa/rsa_pss.c | |
parent | e6d34a52bf003f2e199023dc166779f5d25bfcff (diff) | |
download | openbsd-b632ec4f99386efc52214c580c9f233748302224.tar.gz openbsd-b632ec4f99386efc52214c580c9f233748302224.tar.bz2 openbsd-b632ec4f99386efc52214c580c9f233748302224.zip |
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 'src/lib/libcrypto/rsa/rsa_pss.c')
-rw-r--r-- | src/lib/libcrypto/rsa/rsa_pss.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_pss.c b/src/lib/libcrypto/rsa/rsa_pss.c index 562f7b252c..85ce762643 100644 --- a/src/lib/libcrypto/rsa/rsa_pss.c +++ b/src/lib/libcrypto/rsa/rsa_pss.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rsa_pss.c,v 1.13 2018/09/05 00:55:33 djm Exp $ */ | 1 | /* $OpenBSD: rsa_pss.c,v 1.14 2021/12/12 21:30:14 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 2005. | 3 | * project 2005. |
4 | */ | 4 | */ |
@@ -66,6 +66,8 @@ | |||
66 | #include <openssl/rsa.h> | 66 | #include <openssl/rsa.h> |
67 | #include <openssl/sha.h> | 67 | #include <openssl/sha.h> |
68 | 68 | ||
69 | #include "evp_locl.h" | ||
70 | |||
69 | static const unsigned char zeroes[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; | 71 | static const unsigned char zeroes[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; |
70 | 72 | ||
71 | int | 73 | int |