tests|programs: remove usage of mbedtls_ecp_set_max_ops()

PK restartable operations are now implemented using PSA interruptible
ones, so mbedtls_ecp_set_max_ops() can be removed in favor of
psa_interruptible_set_max_ops().

Signed-off-by: Valerio Setti <[email protected]>
This commit is contained in:
Valerio Setti
2025-06-12 06:39:18 +02:00
parent eaf578978e
commit a81d6dfb05
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -2173,7 +2173,6 @@ usage:
#if defined(MBEDTLS_ECP_RESTARTABLE)
if (opt.ec_max_ops != DFL_EC_MAX_OPS) {
psa_interruptible_set_max_ops(opt.ec_max_ops);
mbedtls_ecp_set_max_ops(opt.ec_max_ops);
}
#endif