mirror of
https://github.com/cuberite/polarssl.git
synced 2025-10-17 12:10:43 -04:00

(1) JSON file structure altered a bit. (2) JSON validated against schema. (3) Corresponding changes in the python script. Signed-off-by: Archana <archana.madhavan@silabs.com> Signed-off-by: Asfandyar Orakzai <asfandyar.orakzai@silabs.com>
23 lines
831 B
JSON
23 lines
831 B
JSON
{
|
|
"prefix": "mbedtls_test",
|
|
"type": "transparent",
|
|
"dependency": "defined(PSA_CRYPTO_DRIVER_TEST)",
|
|
"headers": ["test/drivers/test_driver.h"],
|
|
"capabilities": [
|
|
{
|
|
"_comment": "The mbedTLS transparent driver supports import key/export key",
|
|
"depend_on": "defined(PSA_CRYPTO_DRIVER_TEST)",
|
|
"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"}
|
|
}
|
|
|
|
]
|
|
}
|