Home | History | Annotate | Download | only in ec

Lines Matching refs:tmp_1

439 	BIGNUM        *tmp_1=NULL, *tmp_2=NULL;
448 if ((tmp_1 = BN_new()) == NULL || (tmp_2 = BN_new()) == NULL)
459 if (!EC_GROUP_get_curve_GFp(group, NULL, tmp_1, tmp_2, NULL))
468 if (!EC_GROUP_get_curve_GF2m(group, NULL, tmp_1, tmp_2, NULL))
475 len_1 = (size_t)BN_num_bytes(tmp_1);
492 if ( (len_1 = BN_bn2bin(tmp_1, buffer_1)) == 0)
563 if (tmp_1)
564 BN_free(tmp_1);