mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-06-05 21:15:09 +00:00
Merge pull request #235 from valeriosetti/issue435-part2-framework
[framework] tests: migrate tests using secp192[k|r]1 toward secp256[r|k]1 --> EC [1/3]
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user