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-15 15:00:44 +01:00
parent 95b754dfac
commit b31b2e62ec
No known key found for this signature in database
GPG key ID: F072ACA227ACD71D
2 changed files with 4 additions and 16 deletions

View file

@ -60,14 +60,14 @@ class BignumModRawMul(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