Line data Source code
1 : #include "tommath_private.h"
2 : #ifdef BN_MP_SQRMOD_C
3 : /* LibTomMath, multiple-precision integer library -- Tom St Denis */
4 : /* SPDX-License-Identifier: Unlicense */
5 :
6 : /* c = a * a (mod b) */
7 0 : mp_err mp_sqrmod(const mp_int *a, const mp_int *b, mp_int *c)
8 : {
9 : mp_err err;
10 : mp_int t;
11 :
12 0 : if ((err = mp_init(&t)) != MP_OKAY) {
13 0 : return err;
14 : }
15 :
16 0 : if ((err = mp_sqr(a, &t)) != MP_OKAY) {
17 0 : goto LBL_ERR;
18 : }
19 0 : err = mp_mod(&t, b, c);
20 :
21 0 : LBL_ERR:
22 0 : mp_clear(&t);
23 0 : return err;
24 : }
25 : #endif
|