summaryrefslogtreecommitdiffstats
path: root/apps/include
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2020-06-16 13:04:57 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-08-12 09:25:49 +1000
commit7c9a7cf12715ac3e906b8d55466f19285fc59e78 (patch)
tree908ad763b756ba550f6a3a465017306933f4f589 /apps/include
parent1017ab21e478b18dd2d9266955dee7e418932a3c (diff)
Add fix for RSA keygen in FIPS using keysizes 2048 < bits < 3072
Fixes #11863 Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12162)
Diffstat (limited to 'apps/include')
-rw-r--r--apps/include/apps.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/include/apps.h b/apps/include/apps.h
index 554d33e1c9..0ee8e070cd 100644
--- a/apps/include/apps.h
+++ b/apps/include/apps.h
@@ -209,7 +209,8 @@ int pkey_ctrl_string(EVP_PKEY_CTX *ctx, const char *value);
int x509_ctrl_string(X509 *x, const char *value);
int x509_req_ctrl_string(X509_REQ *x, const char *value);
int init_gen_str(EVP_PKEY_CTX **pctx,
- const char *algname, ENGINE *e, int do_param);
+ const char *algname, ENGINE *e, int do_param,
+ OPENSSL_CTX *libctx, const char *propq);
int do_X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md,
STACK_OF(OPENSSL_STRING) *sigopts);
int do_X509_verify(X509 *x, EVP_PKEY *pkey, STACK_OF(OPENSSL_STRING) *vfyopts);