Home
last modified time | relevance | path

Searched refs:powerbuf (Results 1 – 1 of 1) sorted by relevance

/external/boringssl/src/crypto/fipsmodule/bn/
Dexponentiation.c910 BN_ULONG *powerbuf = NULL; in BN_mod_exp_mont_consttime() local
997 powerbuf = storage; in BN_mod_exp_mont_consttime()
1000 assert(powerbuf != NULL || top * BN_BITS2 > 1024); in BN_mod_exp_mont_consttime()
1002 if (powerbuf == NULL) { in BN_mod_exp_mont_consttime()
1008 powerbuf = (BN_ULONG *)MOD_EXP_CTIME_ALIGN(powerbufFree); in BN_mod_exp_mont_consttime()
1010 OPENSSL_memset(powerbuf, 0, powerbufLen); in BN_mod_exp_mont_consttime()
1013 tmp.d = powerbuf + top * numPowers; in BN_mod_exp_mont_consttime()
1056 bn_scatter5(tmp.d, top, powerbuf, 0); in BN_mod_exp_mont_consttime()
1057 bn_scatter5(am.d, am.width, powerbuf, 1); in BN_mod_exp_mont_consttime()
1059 bn_scatter5(tmp.d, top, powerbuf, 2); in BN_mod_exp_mont_consttime()
[all …]