mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-31 13:50:30 +01:00
Allow RSA PK Opaque keys for RSA-PSS signing
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
parent
cb87403560
commit
7624a5ae5e
|
|
@ -776,6 +776,8 @@ int mbedtls_pk_wrap_as_opaque( mbedtls_pk_context *pk,
|
|||
psa_set_key_usage_flags( &attributes, PSA_KEY_USAGE_SIGN_HASH );
|
||||
psa_set_key_algorithm( &attributes,
|
||||
PSA_ALG_RSA_PKCS1V15_SIGN( hash_alg ) );
|
||||
psa_set_key_enrollment_algorithm( &attributes,
|
||||
PSA_ALG_RSA_PSS( hash_alg ) );
|
||||
|
||||
/* import private key into PSA */
|
||||
status = psa_import_key( &attributes,
|
||||
|
|
|
|||
Loading…
Reference in a new issue