mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-18 14:42:24 +00:00
Merge pull request #6451 from mpg/fix-can-exercise
Fix can_exercise() for RSA and hashes
This commit is contained in:
commit
3e0ea98b7c
@ -1130,7 +1130,7 @@
|
|||||||
*
|
*
|
||||||
* Enable support for PKCS#1 v1.5 encoding.
|
* Enable support for PKCS#1 v1.5 encoding.
|
||||||
*
|
*
|
||||||
* Requires: MBEDTLS_MD_C, MBEDTLS_RSA_C
|
* Requires: MBEDTLS_RSA_C
|
||||||
*
|
*
|
||||||
* This enables support for PKCS#1 v1.5 operations.
|
* This enables support for PKCS#1 v1.5 operations.
|
||||||
*/
|
*/
|
||||||
|
@ -84,17 +84,21 @@ static int is_accelerated_rsa( psa_algorithm_t alg )
|
|||||||
* also be built-in. */
|
* also be built-in. */
|
||||||
static int is_builtin_calling_md( psa_algorithm_t alg )
|
static int is_builtin_calling_md( psa_algorithm_t alg )
|
||||||
{
|
{
|
||||||
#if defined(MBEDTLS_PSA_BUILTIN_ALG_RSA_PKCS1V15_SIGN)
|
|
||||||
if( PSA_ALG_IS_RSA_PKCS1V15_SIGN( alg ) )
|
|
||||||
return( 1 );
|
|
||||||
#endif
|
|
||||||
#if defined(MBEDTLS_PSA_BUILTIN_ALG_RSA_PSS)
|
#if defined(MBEDTLS_PSA_BUILTIN_ALG_RSA_PSS)
|
||||||
if( PSA_ALG_IS_RSA_PSS( alg ) )
|
if( PSA_ALG_IS_RSA_PSS( alg ) )
|
||||||
|
#if defined(MBEDTLS_MD_C)
|
||||||
return( 1 );
|
return( 1 );
|
||||||
|
#else
|
||||||
|
return( 0 );
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_PSA_BUILTIN_ALG_RSA_OAEP)
|
#if defined(MBEDTLS_PSA_BUILTIN_ALG_RSA_OAEP)
|
||||||
if( PSA_ALG_IS_RSA_OAEP( alg ) )
|
if( PSA_ALG_IS_RSA_OAEP( alg ) )
|
||||||
|
#if defined(MBEDTLS_MD_C)
|
||||||
return( 1 );
|
return( 1 );
|
||||||
|
#else
|
||||||
|
return( 0 );
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)
|
#if defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA)
|
||||||
if( PSA_ALG_IS_DETERMINISTIC_ECDSA( alg ) )
|
if( PSA_ALG_IS_DETERMINISTIC_ECDSA( alg ) )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user