mirror of https://github.com/openssl/openssl.git
				
				
				
			rsa_padding_add_PKCS1_OAEP_mgf1_with_libctx(): fix check of |md|
In the FIPS module, the code as written generate an unconditional error. Fixes #11865 Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11869)
This commit is contained in:
		
							parent
							
								
									a30027b680
								
							
						
					
					
						commit
						e637d47c91
					
				|  | @ -67,13 +67,14 @@ int rsa_padding_add_PKCS1_OAEP_mgf1_with_libctx(OPENSSL_CTX *libctx, | |||
|     unsigned char seedmask[EVP_MAX_MD_SIZE]; | ||||
|     int mdlen, dbmask_len = 0; | ||||
| 
 | ||||
|     if (md == NULL) { | ||||
| #ifndef FIPS_MODULE | ||||
|     if (md == NULL) | ||||
|         md = EVP_sha1(); | ||||
| #else | ||||
|         RSAerr(0, ERR_R_PASSED_NULL_PARAMETER); | ||||
|         return 0; | ||||
| #endif | ||||
|     } | ||||
|     if (mgf1md == NULL) | ||||
|         mgf1md = md; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue