diff options
author | Tomas Mraz <tomas@openssl.org> | 2021-06-03 15:22:05 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2021-06-04 17:06:47 +0200 |
commit | 085e3cecbdadde10e93abfb4dbd3e865aeed58d6 (patch) | |
tree | fdb56464e81404811e5254b8953bb6b83b70a139 /crypto/rsa | |
parent | req: detect a bad choice of digest early (diff) | |
download | openssl-085e3cecbdadde10e93abfb4dbd3e865aeed58d6.tar.xz openssl-085e3cecbdadde10e93abfb4dbd3e865aeed58d6.zip |
Move libssl related defines used by fips provider to prov_ssl.h
This nicely reduces the number of files considered as fips
provider sources.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15609)
Diffstat (limited to 'crypto/rsa')
-rw-r--r-- | crypto/rsa/rsa_pk1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_pk1.c b/crypto/rsa/rsa_pk1.c index f1eabf177c..89778e6c4d 100644 --- a/crypto/rsa/rsa_pk1.c +++ b/crypto/rsa/rsa_pk1.c @@ -20,7 +20,7 @@ #include <openssl/rsa.h> #include <openssl/rand.h> /* Just for the SSL_MAX_MASTER_KEY_LENGTH value */ -#include <openssl/ssl.h> +#include <openssl/prov_ssl.h> #include "internal/cryptlib.h" #include "crypto/rsa.h" #include "rsa_local.h" |