Skip to content

Commit cf86d70

Browse files
Merge pull request #6742 from gabor-mezei-arm/6022_bignum_mod_raw_mul
Bignum: Implement fixed width raw modular multiplication
2 parents 546493b + 210ea63 commit cf86d70

File tree

4 files changed

+159
-0
lines changed

4 files changed

+159
-0
lines changed

library/bignum_mod_raw.c

+10
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,16 @@ void mbedtls_mpi_mod_raw_sub( mbedtls_mpi_uint *X,
120120
(void) mbedtls_mpi_core_add_if( X, N->p, N->limbs, (unsigned) c );
121121
}
122122

123+
void mbedtls_mpi_mod_raw_mul( mbedtls_mpi_uint *X,
124+
const mbedtls_mpi_uint *A,
125+
const mbedtls_mpi_uint *B,
126+
const mbedtls_mpi_mod_modulus *N,
127+
mbedtls_mpi_uint *T )
128+
{
129+
mbedtls_mpi_core_montmul( X, A, B, N->limbs, N->p, N->limbs,
130+
N->rep.mont.mm, T );
131+
}
132+
123133
/* END MERGE SLOT 2 */
124134

125135
/* BEGIN MERGE SLOT 3 */

library/bignum_mod_raw.h

+35
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,41 @@ void mbedtls_mpi_mod_raw_sub( mbedtls_mpi_uint *X,
215215
const mbedtls_mpi_uint *B,
216216
const mbedtls_mpi_mod_modulus *N );
217217

218+
/** \brief Multiply two MPIs, returning the residue modulo the specified
219+
* modulus.
220+
*
221+
* \note Currently handles the case when `N->int_rep` is
222+
* MBEDTLS_MPI_MOD_REP_MONTGOMERY.
223+
*
224+
* The size of the operation is determined by \p N. \p A, \p B and \p X must
225+
* all be associated with the modulus \p N and must all have the same number
226+
* of limbs as \p N.
227+
*
228+
* \p X may be aliased to \p A or \p B, or even both, but may not overlap
229+
* either otherwise. They may not alias \p N (since they must be in canonical
230+
* form, they cannot == \p N).
231+
*
232+
* \param[out] X The address of the result MPI. Must have the same
233+
* number of limbs as \p N.
234+
* On successful completion, \p X contains the result of
235+
* the multiplication `A * B * R^-1` mod N where
236+
* `R = 2^(biL * N->limbs)`.
237+
* \param[in] A The address of the first MPI.
238+
* \param[in] B The address of the second MPI.
239+
* \param[in] N The address of the modulus. Used to perform a modulo
240+
* operation on the result of the multiplication.
241+
* \param[in,out] T Temporary storage of size at least 2 * N->limbs + 1
242+
* limbs. Its initial content is unused and
243+
* its final content is indeterminate.
244+
* It must not alias or otherwise overlap any of the
245+
* other parameters.
246+
*/
247+
void mbedtls_mpi_mod_raw_mul( mbedtls_mpi_uint *X,
248+
const mbedtls_mpi_uint *A,
249+
const mbedtls_mpi_uint *B,
250+
const mbedtls_mpi_mod_modulus *N,
251+
mbedtls_mpi_uint *T );
252+
218253
/* END MERGE SLOT 2 */
219254

220255
/* BEGIN MERGE SLOT 3 */

scripts/mbedtls_dev/bignum_mod_raw.py

+19
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,25 @@ def result(self) -> List[str]:
5050
result = (self.int_a - self.int_b) % self.int_n
5151
return [self.format_result(result)]
5252

53+
class BignumModRawMul(bignum_common.ModOperationCommon,
54+
BignumModRawTarget):
55+
"""Test cases for bignum mpi_mod_raw_mul()."""
56+
symbol = "*"
57+
test_function = "mpi_mod_raw_mul"
58+
test_name = "mbedtls_mpi_mod_raw_mul"
59+
input_style = "arch_split"
60+
arity = 2
61+
62+
def arguments(self) -> List[str]:
63+
return [self.format_result(self.to_montgomery(self.int_a)),
64+
self.format_result(self.to_montgomery(self.int_b)),
65+
bignum_common.quote_str(self.arg_n)
66+
] + self.result()
67+
68+
def result(self) -> List[str]:
69+
result = (self.int_a * self.int_b) % self.int_n
70+
return [self.format_result(self.to_montgomery(result))]
71+
5372
# END MERGE SLOT 2
5473

5574
# BEGIN MERGE SLOT 3

tests/suites/test_suite_bignum_mod_raw.function

+95
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,101 @@ exit:
345345
}
346346
/* END_CASE */
347347

348+
/* BEGIN_CASE */
349+
void mpi_mod_raw_mul( char * input_A,
350+
char * input_B,
351+
char * input_N,
352+
char * result )
353+
{
354+
mbedtls_mpi_uint *A = NULL;
355+
mbedtls_mpi_uint *B = NULL;
356+
mbedtls_mpi_uint *N = NULL;
357+
mbedtls_mpi_uint *X = NULL;
358+
mbedtls_mpi_uint *R = NULL;
359+
mbedtls_mpi_uint *T = NULL;
360+
size_t limbs_A;
361+
size_t limbs_B;
362+
size_t limbs_N;
363+
size_t limbs_R;
364+
365+
mbedtls_mpi_mod_modulus m;
366+
mbedtls_mpi_mod_modulus_init( &m );
367+
368+
TEST_EQUAL( mbedtls_test_read_mpi_core( &A, &limbs_A, input_A ), 0 );
369+
TEST_EQUAL( mbedtls_test_read_mpi_core( &B, &limbs_B, input_B ), 0 );
370+
TEST_EQUAL( mbedtls_test_read_mpi_core( &N, &limbs_N, input_N ), 0 );
371+
TEST_EQUAL( mbedtls_test_read_mpi_core( &R, &limbs_R, result ), 0 );
372+
373+
const size_t limbs = limbs_N;
374+
const size_t bytes = limbs * sizeof( mbedtls_mpi_uint );
375+
376+
TEST_EQUAL( limbs_A, limbs );
377+
TEST_EQUAL( limbs_B, limbs );
378+
TEST_EQUAL( limbs_R, limbs );
379+
380+
ASSERT_ALLOC( X, limbs );
381+
382+
TEST_EQUAL( mbedtls_mpi_mod_modulus_setup(
383+
&m, N, limbs,
384+
MBEDTLS_MPI_MOD_REP_MONTGOMERY ), 0 );
385+
386+
const size_t limbs_T = limbs * 2 + 1;
387+
ASSERT_ALLOC( T, limbs_T );
388+
389+
mbedtls_mpi_mod_raw_mul( X, A, B, &m, T );
390+
ASSERT_COMPARE( X, bytes, R, bytes );
391+
392+
/* alias X to A */
393+
memcpy( X, A, bytes );
394+
mbedtls_mpi_mod_raw_mul( X, X, B, &m, T );
395+
ASSERT_COMPARE( X, bytes, R, bytes );
396+
397+
/* alias X to B */
398+
memcpy( X, B, bytes );
399+
mbedtls_mpi_mod_raw_mul( X, A, X, &m, T );
400+
ASSERT_COMPARE( X, bytes, R, bytes );
401+
402+
/* A == B: alias A and B */
403+
if( memcmp( A, B, bytes ) == 0 )
404+
{
405+
mbedtls_mpi_mod_raw_mul( X, A, A, &m, T );
406+
ASSERT_COMPARE( X, bytes, R, bytes );
407+
408+
/* X, A, B all aliased together */
409+
memcpy( X, A, bytes );
410+
mbedtls_mpi_mod_raw_mul( X, X, X, &m, T );
411+
ASSERT_COMPARE( X, bytes, R, bytes );
412+
}
413+
414+
/* A != B: test B * A */
415+
else
416+
{
417+
mbedtls_mpi_mod_raw_mul( X, B, A, &m, T );
418+
ASSERT_COMPARE( X, bytes, R, bytes );
419+
420+
/* B * A: alias X to A */
421+
memcpy( X, A, bytes );
422+
mbedtls_mpi_mod_raw_mul( X, B, X, &m, T );
423+
ASSERT_COMPARE( X, bytes, R, bytes );
424+
425+
/* B + A: alias X to B */
426+
memcpy( X, B, bytes );
427+
mbedtls_mpi_mod_raw_mul( X, X, A, &m, T );
428+
ASSERT_COMPARE( X, bytes, R, bytes );
429+
}
430+
431+
exit:
432+
mbedtls_free( A );
433+
mbedtls_free( B );
434+
mbedtls_free( X );
435+
mbedtls_free( R );
436+
mbedtls_free( T );
437+
438+
mbedtls_mpi_mod_modulus_free( &m );
439+
mbedtls_free( N );
440+
}
441+
/* END_CASE */
442+
348443
/* END MERGE SLOT 2 */
349444

350445
/* BEGIN MERGE SLOT 3 */

0 commit comments

Comments
 (0)