mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-30 22:43:08 +03:00
Change key param to mbedtls_svc_key_id_t in psa_export_public_key_iop_setup()
Signed-off-by: Waleed Elmelegy <waleed.elmelegy@arm.com>
This commit is contained in:
@ -363,7 +363,7 @@ psa_status_t mbedtls_test_wrap_psa_export_public_key_iop_complete(
|
||||
|
||||
psa_status_t mbedtls_test_wrap_psa_export_public_key_iop_setup(
|
||||
psa_export_public_key_iop_t *arg0_operation,
|
||||
psa_key_id_t arg1_key);
|
||||
mbedtls_svc_key_id_t arg1_key);
|
||||
#define psa_export_public_key_iop_setup(arg0_operation, arg1_key) \
|
||||
mbedtls_test_wrap_psa_export_public_key_iop_setup(arg0_operation, arg1_key)
|
||||
|
||||
|
@ -623,7 +623,7 @@ psa_status_t mbedtls_test_wrap_psa_export_public_key_iop_complete(
|
||||
/* Wrapper for psa_export_public_key_iop_setup */
|
||||
psa_status_t mbedtls_test_wrap_psa_export_public_key_iop_setup(
|
||||
psa_export_public_key_iop_t *arg0_operation,
|
||||
psa_key_id_t arg1_key)
|
||||
mbedtls_svc_key_id_t arg1_key)
|
||||
{
|
||||
psa_status_t status = (psa_export_public_key_iop_setup)(arg0_operation, arg1_key);
|
||||
return status;
|
||||
|
Reference in New Issue
Block a user