Searched refs:tmpB (Results 1 – 2 of 2) sorted by relevance
/device/google/contexthub/lib/nanohub/ |
D | rsa.c | 174 memcpy(state->tmpB, a, RSA_BYTES); in rsaPubOpIterative() 186 … biMulIterative(state->tmpA, state->tmpB, gigastep == 16 ? a : state->tmpB, gigastepSubstep); in rsaPubOpIterative() 193 …if (biModIterative(state->tmpA, c, state->tmpB, state1, state2, gigastepSubstep - RSA_LEN)) { //MO… in rsaPubOpIterative() 203 memcpy(state->tmpB, state->tmpA, RSA_BYTES); in rsaPubOpIterative() 256 memcpy(state->tmpB, state->tmpA, RSA_BYTES); in rsaPrivOp() 257 biMul(state->tmpA, state->tmpB, state->tmpC); in rsaPrivOp() 258 biMod(state->tmpA, c, state->tmpB); in rsaPrivOp() 263 memcpy(state->tmpB, state->tmpA, RSA_BYTES); //save tA in rsaPrivOp() 267 memcpy(state->tmpA, state->tmpB, RSA_BYTES); //restore tA in rsaPrivOp() 269 memcpy(state->tmpB, state->tmpC, RSA_BYTES); in rsaPrivOp() [all …]
|
/device/google/contexthub/lib/include/nanohub/ |
D | rsa.h | 29 uint32_t tmpB[RSA_LIMBS + 1]; member
|