scripts: ecp.py: do not test secp192 curves in development

Signed-off-by: Valerio Setti <[email protected]>
This commit is contained in:
Valerio Setti
2025-11-06 23:43:25 +01:00
parent 7e2b53a0fd
commit 9232f41572
+6 -2
View File
@@ -86,7 +86,9 @@ class EcpP192R1Raw(bignum_common.ModOperationCommon,
@property
def is_valid(self) -> bool:
return True
# secp192r1 support has been removed from development, but it's stil
# available in 3.6 branch.
return build_tree.is_mbedtls_3_6()
def arguments(self)-> List[str]:
args = super().arguments()
@@ -553,7 +555,9 @@ class EcpP192K1Raw(bignum_common.ModOperationCommon,
@property
def is_valid(self) -> bool:
return True
# secp192k1 support has been removed from development, but it's stil
# available in 3.6 branch.
return build_tree.is_mbedtls_3_6()
def arguments(self):
args = super().arguments()