Lines Matching refs:tmp1
259 BIGNUM msg, tmp, tmp1;
328 if ((brv = big_init(&tmp1, 2 * BIG_CHUNKS_FOR_160BITS + 1)) != BIG_OK) {
377 if ((brv = big_mul(&tmp1, &(dsakey.x), &(dsakey.r))) != BIG_OK) {
382 if ((brv = big_add(&tmp1, &tmp1, &msg)) != BIG_OK) {
387 if ((brv = big_mul(&tmp, &tmp1, &tmp)) != BIG_OK) {
406 big_finish(&tmp1);
426 BIGNUM msg, tmp1, tmp2, tmp3;
508 if (big_init(&tmp1, 2 * CHARLEN2BIGNUMLEN(prime_bytes)) != BIG_OK) {
536 if (big_mul(&tmp1, &msg, &tmp2) != BIG_OK) {
541 if (big_div_pos(NULL, &tmp1, &tmp1, &(dsakey.q)) != BIG_OK) {
543 goto clean5; /* tmp1 <- u_1 */
556 if (big_modexp(&tmp1, &(dsakey.g), &tmp1, &(dsakey.p), NULL) !=
568 if (big_mul(&tmp1, &tmp1, &tmp2) != BIG_OK) {
573 if (big_div_pos(NULL, &tmp1, &tmp1, &(dsakey.p)) != BIG_OK) {
578 if (big_div_pos(NULL, &tmp1, &tmp1, &(dsakey.q)) != BIG_OK) {
583 if (big_cmp_abs(&tmp1, &(dsakey.r)) == 0)
593 big_finish(&tmp1);