mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-01 04:20:45 +00:00
Enable fallback to software implementation in psa_sign/verify_message driver
Signed-off-by: gabor-mezei-arm <gabor.mezei@arm.com>
This commit is contained in:
parent
f048618b43
commit
d5218df572
@ -126,7 +126,7 @@ psa_status_t psa_driver_wrapper_sign_message(
|
|||||||
default:
|
default:
|
||||||
/* Key is declared with a lifetime not known to us */
|
/* Key is declared with a lifetime not known to us */
|
||||||
(void)status;
|
(void)status;
|
||||||
return( PSA_ERROR_INVALID_ARGUMENT );
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return( psa_sign_message_builtin( attributes,
|
return( psa_sign_message_builtin( attributes,
|
||||||
@ -198,7 +198,7 @@ psa_status_t psa_driver_wrapper_verify_message(
|
|||||||
default:
|
default:
|
||||||
/* Key is declared with a lifetime not known to us */
|
/* Key is declared with a lifetime not known to us */
|
||||||
(void)status;
|
(void)status;
|
||||||
return( PSA_ERROR_INVALID_ARGUMENT );
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return( psa_verify_message_builtin( attributes,
|
return( psa_verify_message_builtin( attributes,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user