mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
Remove unnecessary function override
Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
parent
aeadc2d731
commit
5e33e6f5d4
|
|
@ -72,10 +72,6 @@ class EcpP192R1Raw(bignum_common.ModOperationCommon,
|
|||
result = self.int_a % self.int_n
|
||||
return [self.format_result(result)]
|
||||
|
||||
@property
|
||||
def is_valid(self) -> bool:
|
||||
return True
|
||||
|
||||
class EcpP224R1Raw(bignum_common.ModOperationCommon,
|
||||
EcpTarget):
|
||||
"""Test cases for ecp quasi_reduction()."""
|
||||
|
|
@ -137,10 +133,6 @@ class EcpP224R1Raw(bignum_common.ModOperationCommon,
|
|||
result = self.int_a % self.int_n
|
||||
return [self.format_result(result)]
|
||||
|
||||
@property
|
||||
def is_valid(self) -> bool:
|
||||
return True
|
||||
|
||||
class EcpP521R1Raw(bignum_common.ModOperationCommon,
|
||||
EcpTarget):
|
||||
"""Test cases for ecp quasi_reduction()."""
|
||||
|
|
@ -227,7 +219,3 @@ class EcpP521R1Raw(bignum_common.ModOperationCommon,
|
|||
def result(self) -> List[str]:
|
||||
result = self.int_a % self.int_n
|
||||
return [self.format_result(result)]
|
||||
|
||||
@property
|
||||
def is_valid(self) -> bool:
|
||||
return True
|
||||
|
|
|
|||
Loading…
Reference in a new issue