mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-28 00:21:48 +03:00
JSON upgrade to give function names
Function names can be provided against entry points. This helps to ensure easy migration for misnamed functions. Signed-off-by: Archana <archana.madhavan@silabs.com> Signed-off-by: Asfandyar Orakzai <asfandyar.orakzai@silabs.com>
This commit is contained in:
committed by
Asfandyar Orakzai
parent
e829cd6953
commit
05efa17549
@ -12,7 +12,8 @@
|
||||
{
|
||||
"_comment": "The mbedTLS opaque driver supports copy key/ get builtin key",
|
||||
"depend_on": "defined(PSA_CRYPTO_DRIVER_TEST)",
|
||||
"entry_points": ["copy_key","get_builtin_key"]
|
||||
"entry_points": ["copy_key","get_builtin_key"],
|
||||
"name": {"copy_key":"mbedtls_test_opaque_copy_key", "get_builtin_key":"mbedtls_test_opaque_get_builtin_key"}
|
||||
}
|
||||
]
|
||||
}]
|
||||
|
@ -4,10 +4,18 @@
|
||||
"headers": ["test/drivers/test_driver.h"],
|
||||
"capabilities": [
|
||||
{
|
||||
"_comment": "The mbedTLS transparent driver supports import key/export key/export_public key",
|
||||
"_comment": "The mbedTLS transparent driver supports import key/export key",
|
||||
"depend_on": "defined(PSA_CRYPTO_DRIVER_TEST)",
|
||||
"entry_points": ["import_key", "export_key", "export_public_key"],
|
||||
"entry_points": ["import_key", "export_key"],
|
||||
"fallback": true
|
||||
},
|
||||
{
|
||||
"_comment": "The mbedTLS transparent driver supports export_public key",
|
||||
"depend_on": "defined(PSA_CRYPTO_DRIVER_TEST)",
|
||||
"entry_points": ["export_public_key"],
|
||||
"fallback": true,
|
||||
"name": {"export_public_key":"mbedtls_test_transparent_export_public_key"}
|
||||
}
|
||||
|
||||
]
|
||||
}]
|
||||
|
Reference in New Issue
Block a user