1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Generate operands in Mongomery representation for the test function

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
Gabor Mezei
2022-12-16 15:25:02 +01:00
parent 2840884c35
commit 77b877d5a7
2 changed files with 4 additions and 16 deletions

View File

@ -41,14 +41,14 @@ class BignumModMul(bignum_common.ModOperationCommon,
arity = 2
def arguments(self) -> List[str]:
return [bignum_common.quote_str(n) for n in [self.arg_a,
self.arg_b,
self.arg_n]
return [self.format_result(self.to_montgomery(self.int_a)),
self.format_result(self.to_montgomery(self.int_b)),
bignum_common.quote_str(self.arg_n)
] + self.result()
def result(self) -> List[str]:
result = (self.int_a * self.int_b) % self.int_n
return [self.format_result(result)]
return [self.format_result(self.to_montgomery(result))]
# END MERGE SLOT 2