summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rsa/rsa_pss.c
diff options
context:
space:
mode:
authortb <>2022-01-07 09:55:32 +0000
committertb <>2022-01-07 09:55:32 +0000
commit79f266d95b1179bddc9e06127734346144314625 (patch)
tree9afc0fd9f58b3648023e49cee129daba751aee74 /src/lib/libcrypto/rsa/rsa_pss.c
parente34065049e662885183a2bfa41208d2873c1d205 (diff)
downloadopenbsd-79f266d95b1179bddc9e06127734346144314625.tar.gz
openbsd-79f266d95b1179bddc9e06127734346144314625.tar.bz2
openbsd-79f266d95b1179bddc9e06127734346144314625.zip
Prepare to make RSA and RSA_METHOD opaque by including rsa_locl.h
where it will be needed in the upcoming bump. discussed with jsing
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/rsa/rsa_pss.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_pss.c b/src/lib/libcrypto/rsa/rsa_pss.c
index 85ce762643..cce38efa91 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.14 2021/12/12 21:30:14 tb Exp $ */ 1/* $OpenBSD: rsa_pss.c,v 1.15 2022/01/07 09:55:32 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 */
@@ -67,6 +67,7 @@
67#include <openssl/sha.h> 67#include <openssl/sha.h>
68 68
69#include "evp_locl.h" 69#include "evp_locl.h"
70#include "rsa_locl.h"
70 71
71static const unsigned char zeroes[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; 72static const unsigned char zeroes[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
72 73