Home
last modified time | relevance | path

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

/NextBSD/crypto/openssl/crypto/ec/
HDec_print.c169 BIGNUM *tmp_bn = NULL; in EC_POINT_hex2point() local
171 if (!BN_hex2bn(&tmp_bn, buf)) in EC_POINT_hex2point()
174 ret = EC_POINT_bn2point(group, tmp_bn, point, ctx); in EC_POINT_hex2point()
176 BN_clear_free(tmp_bn); in EC_POINT_hex2point()
HDecp_nist.c136 BIGNUM *tmp_bn; in ec_GFp_nist_group_set_curve() local
143 if ((tmp_bn = BN_CTX_get(ctx)) == NULL) in ec_GFp_nist_group_set_curve()
/NextBSD/crypto/openssl/crypto/bn/
HDbn_mul.c1037 BIGNUM *tmp_bn = (BIGNUM *)b; in BN_mul()
1038 if (bn_wexpand(tmp_bn, al) == NULL) in BN_mul()
1040 tmp_bn->d[bl] = 0; in BN_mul()
1044 BIGNUM *tmp_bn = (BIGNUM *)a; in BN_mul()
1045 if (bn_wexpand(tmp_bn, bl) == NULL) in BN_mul()
1047 tmp_bn->d[al] = 0; in BN_mul()