Searched refs:powerbuf (Results 1 – 1 of 1) sorted by relevance
/external/boringssl/src/crypto/bn/ |
D | exponentiation.c | 874 unsigned char *powerbuf = NULL; in BN_mod_exp_mont_consttime() local 963 powerbuf = MOD_EXP_CTIME_ALIGN(powerbufFree); in BN_mod_exp_mont_consttime() 964 memset(powerbuf, 0, powerbufLen); in BN_mod_exp_mont_consttime() 973 tmp.d = (BN_ULONG *)(powerbuf + sizeof(m->d[0]) * top * numPowers); in BN_mod_exp_mont_consttime() 1032 bn_scatter5(tmp.d, top, powerbuf, 0); in BN_mod_exp_mont_consttime() 1033 bn_scatter5(am.d, am.top, powerbuf, 1); in BN_mod_exp_mont_consttime() 1035 bn_scatter5(tmp.d, top, powerbuf, 2); in BN_mod_exp_mont_consttime() 1040 bn_scatter5(tmp.d, top, powerbuf, i); in BN_mod_exp_mont_consttime() 1044 bn_mul_mont_gather5(tmp.d, am.d, powerbuf, np2, n0, top, i - 1); in BN_mod_exp_mont_consttime() 1045 bn_scatter5(tmp.d, top, powerbuf, i); in BN_mod_exp_mont_consttime() [all …]
|