8550e0f746
Transparent drivers don't have this entry points. Other entry points that are only for opaque drivers are not listed here but only in the opaque_driver.json file, so this was likely a mistake. Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
22 lines
849 B
JSON
22 lines
849 B
JSON
{
|
|
"prefix": "mbedtls_test",
|
|
"type": "transparent",
|
|
"mbedtls/h_condition": "defined(PSA_CRYPTO_DRIVER_TEST)",
|
|
"headers": ["test/drivers/test_driver.h"],
|
|
"capabilities": [
|
|
{
|
|
"_comment": "The Mbed TLS transparent driver supports import key/export key",
|
|
"mbedtls/c_condition": "defined(PSA_CRYPTO_DRIVER_TEST)",
|
|
"entry_points": ["import_key"],
|
|
"fallback": true
|
|
},
|
|
{
|
|
"_comment": "The Mbed TLS transparent driver supports export_public key",
|
|
"mbedtls/c_condition": "defined(PSA_CRYPTO_DRIVER_TEST)",
|
|
"entry_points": ["export_public_key"],
|
|
"fallback": true,
|
|
"names": {"export_public_key":"mbedtls_test_transparent_export_public_key"}
|
|
}
|
|
|
|
]
|
|
}
|