summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-03-25 09:12:35 +0000
committertb <>2023-03-25 09:12:35 +0000
commitd716523c1ff8d2c6fc1ebbc7fdbd6c21136ae235 (patch)
tree7167eaf26541fbd8d7a8f776bd1599aed63ff1b4 /src
parent28454ed747063b6a3018cbbbb047dd6d5eb6eff9 (diff)
downloadopenbsd-d716523c1ff8d2c6fc1ebbc7fdbd6c21136ae235.tar.gz
openbsd-d716523c1ff8d2c6fc1ebbc7fdbd6c21136ae235.tar.bz2
openbsd-d716523c1ff8d2c6fc1ebbc7fdbd6c21136ae235.zip
Pull in <openssl/rsa.h> directly
This is needed for many reasons. It is currently pulled in via x509.h but only when OPENSSL_NO_DEPRECATED is undefined. Again this should be fixed in the public header as well.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/rsa/rsa_ameth.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_ameth.c b/src/lib/libcrypto/rsa/rsa_ameth.c
index 4ae41aeb84..9b91dd1911 100644
--- a/src/lib/libcrypto/rsa/rsa_ameth.c
+++ b/src/lib/libcrypto/rsa/rsa_ameth.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rsa_ameth.c,v 1.27 2022/11/26 16:08:54 tb Exp $ */ 1/* $OpenBSD: rsa_ameth.c,v 1.28 2023/03/25 09:12:35 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 2006. 3 * project 2006.
4 */ 4 */
@@ -64,6 +64,7 @@
64#include <openssl/bn.h> 64#include <openssl/bn.h>
65#include <openssl/cms.h> 65#include <openssl/cms.h>
66#include <openssl/err.h> 66#include <openssl/err.h>
67#include <openssl/rsa.h>
67#include <openssl/x509.h> 68#include <openssl/x509.h>
68 69
69#include "asn1_local.h" 70#include "asn1_local.h"