mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-13 17:25: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
c979578a83
commit
f25c9767a9
|
@ -125,7 +125,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,
|
||||||
|
@ -197,7 +197,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…
Reference in a new issue