Lines Matching refs:tmp2
426 BIGNUM msg, tmp1, tmp2, tmp3;
512 if (big_init(&tmp2, CHARLEN2BIGNUMLEN(prime_bytes)) != BIG_OK) {
524 if (big_ext_gcd_pos(NULL, &tmp2, NULL, &(dsakey.s), &(dsakey.q)) !=
530 if (tmp2.sign == -1)
531 if (big_add(&tmp2, &tmp2, &(dsakey.q)) != BIG_OK) {
533 goto clean5; /* tmp2 <- w */
536 if (big_mul(&tmp1, &msg, &tmp2) != BIG_OK) {
546 if (big_mul(&tmp2, &tmp2, &(dsakey.r)) != BIG_OK) {
551 if (big_div_pos(NULL, &tmp2, &tmp2, &(dsakey.q)) != BIG_OK) {
553 goto clean5; /* tmp2 <- u_2 */
562 if (big_modexp(&tmp2, &(dsakey.y), &tmp2, &(dsakey.p), NULL) !=
568 if (big_mul(&tmp1, &tmp1, &tmp2) != BIG_OK) {
591 big_finish(&tmp2);