Skip to content

Commit f723754

Browse files
Fix typos
Signed-off-by: Tom Cosgrove <tom.cosgrove@arm.com>
1 parent 342d00b commit f723754

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

library/bignum_core.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ static inline size_t mbedtls_mpi_core_montmul_working_limbs( size_t AN_limbs )
623623
* \param[in] A The MPI to convert into Montgomery form.
624624
* Must have the same number of limbs as the modulus.
625625
* \param[in] N The address of the modulus, which gives the size of
626-
* the base `R` = 2^(biL*m->limbs).
626+
* the base `R` = 2^(biL*N->limbs).
627627
* \param[in] AN_limbs The number of limbs in \p X, \p A, \p N and \p rr.
628628
* \param mm The Montgomery constant for \p N: -N^-1 mod 2^biL.
629629
* This can be determined by calling
@@ -661,7 +661,7 @@ void mbedtls_mpi_core_to_mont_rep( mbedtls_mpi_uint *X,
661661
* \param[in] A The MPI to convert from Montgomery form.
662662
* Must have the same number of limbs as the modulus.
663663
* \param[in] N The address of the modulus, which gives the size of
664-
* the base `R` = 2^(biL*m->limbs).
664+
* the base `R` = 2^(biL*N->limbs).
665665
* \param[in] AN_limbs The number of limbs in \p X, \p A and \p N.
666666
* \param mm The Montgomery constant for \p N: -N^-1 mod 2^biL.
667667
* This can be determined by calling

scripts/mbedtls_dev/bignum_common.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ class ModOperationCommon(OperationCommon):
249249
#pylint: disable=abstract-method
250250
"""Target for bignum mod_raw test case generation."""
251251
moduli = MODULI_DEFAULT # type: List[str]
252-
mongtomgery_form_a = False
252+
montgomery_form_a = False
253253
disallow_zero_a = False
254254

255255
def __init__(self, val_n: str, val_a: str, val_b: str = "0",
@@ -272,7 +272,7 @@ def boundary(self) -> int:
272272

273273
@property
274274
def arg_a(self) -> str:
275-
if self.mongtomgery_form_a:
275+
if self.montgomery_form_a:
276276
value_a = self.to_montgomery(self.int_a)
277277
else:
278278
value_a = self.int_a

scripts/mbedtls_dev/bignum_core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ class BignumCoreExpMod(BignumCoreTarget, bignum_common.ModOperationCommon):
757757
test_function = "mpi_core_exp_mod"
758758
test_name = "Core modular exponentiation (Mongtomery form only)"
759759
input_style = "fixed"
760-
mongtomgery_form_a = True
760+
montgomery_form_a = True
761761

762762
def result(self) -> List[str]:
763763
# Result has to be given in Montgomery form too

scripts/mbedtls_dev/bignum_mod.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class BignumModInvMont(bignum_common.ModOperationCommon, BignumModTarget):
7676
arity = 1
7777
suffix = True
7878
disallow_zero_a = True
79-
mongtomgery_form_a = True
79+
montgomery_form_a = True
8080

8181
def result(self) -> List[str]:
8282
result = bignum_common.invmod_positive(self.int_a, self.int_n)

scripts/mbedtls_dev/bignum_mod_raw.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class BignumModRawInvPrime(bignum_common.ModOperationCommon,
6464
input_style = "arch_split"
6565
arity = 1
6666
suffix = True
67-
mongtomgery_form_a = True
67+
montgomery_form_a = True
6868
disallow_zero_a = True
6969

7070
def result(self) -> List[str]:

0 commit comments

Comments
 (0)