From: Dr. Stephen Henson Date: Sat, 5 Feb 2005 18:24:50 +0000 (+0000) Subject: In FIPS mode use SHA1 as default digest in x509 and req X-Git-Tag: OpenSSL_0_9_7f~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20e51771051e733295d96306a04c14cb05dab75c;p=openssl In FIPS mode use SHA1 as default digest in x509 and req utilities. --- diff --git a/apps/req.c b/apps/req.c index d33cddc94d..eebe71b15e 100644 --- a/apps/req.c +++ b/apps/req.c @@ -175,7 +175,7 @@ int MAIN(int argc, char **argv) char *passin = NULL, *passout = NULL; char *p; char *subj = NULL; - const EVP_MD *md_alg=NULL,*digest=EVP_md5(); + const EVP_MD *md_alg=NULL,*digest; unsigned long chtype = MBSTRING_ASC; #ifndef MONOLITH char *to_free; @@ -197,6 +197,13 @@ int MAIN(int argc, char **argv) informat=FORMAT_PEM; outformat=FORMAT_PEM; +#ifdef OPENSSL_FIPS + if (FIPS_mode()) + digest = EVP_sha1(); + else +#endif + digest = EVP_md5(); + prog=argv[0]; argc--; argv++; diff --git a/apps/x509.c b/apps/x509.c index 7a998523c7..e7115cac67 100644 --- a/apps/x509.c +++ b/apps/x509.c @@ -179,7 +179,7 @@ int MAIN(int argc, char **argv) X509_REQ *rq=NULL; int fingerprint=0; char buf[256]; - const EVP_MD *md_alg,*digest=EVP_md5(); + const EVP_MD *md_alg,*digest; CONF *extconf = NULL; char *extsect = NULL, *extfile = NULL, *passin = NULL, *passargin = NULL; int need_rand = 0; @@ -216,6 +216,13 @@ int MAIN(int argc, char **argv) if (ctx == NULL) goto end; X509_STORE_set_verify_cb_func(ctx,callb); +#ifdef OPENSSL_FIPS + if (FIPS_mode()) + digest = EVP_sha1(); + else +#endif + digest = EVP_md5(); + argc--; argv++; num=0;