Searched refs:mp_mulmod (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.h294 mp_err mp_mulmod(const mp_int *a, const mp_int *b, const mp_int *m, mp_int *c);
298 #define mp_sqrmod(a, m, c) mp_mulmod(a, a, m, c)
H A Dec.c778 CHECK_MPI_OK( mp_mulmod(&d, &r, &n, &d) ); /* d = d * r mod n */
780 CHECK_MPI_OK( mp_mulmod(&s, &k, &n, &s) ); /* s = s * k mod n */
989 CHECK_MPI_OK( mp_mulmod(&u1, &c, &n, &u1) ); /* u1 = u1 * c mod n */
996 CHECK_MPI_OK( mp_mulmod(&r_, &c, &n, &u2) );
H A Decl_gf.c941 return mp_mulmod(a, b, &meth->irr, r);
968 MP_CHECKOK(mp_mulmod(a, &t, &meth->irr, r));
H A Dmpi.c1438 /* {{{ mp_mulmod(a, b, m, c) */
1441 mp_mulmod(a, b, m, c)
1446 mp_err mp_mulmod(const mp_int *a, const mp_int *b, const mp_int *m, mp_int *c) function

Completed in 46 milliseconds