Lines Matching refs:bnctx
121 BN_CTX *bnctx = NULL;
136 bnctx = BN_CTX_new_ex(ossl_ec_key_get_libctx(eckey));
137 if (bnctx == NULL)
154 pub_key, bnctx)) == 0
162 x = BN_CTX_get(bnctx);
167 y = BN_CTX_get(bnctx);
172 if (!EC_POINT_get_affine_coordinates(ecg, pub_point, x, y, bnctx))
234 BN_CTX_free(bnctx);
456 BN_CTX *bnctx = NULL;
486 bnctx = BN_CTX_new_ex(ossl_ec_key_get_libctx(ec));
487 if (bnctx == NULL) {
491 BN_CTX_start(bnctx);
495 bnctx, &genbuf);
518 BN_CTX_end(bnctx);
519 BN_CTX_free(bnctx);
645 BN_CTX *bnctx = NULL;
656 bnctx = BN_CTX_new_ex(libctx);
657 if (bnctx == NULL)
659 BN_CTX_start(bnctx);
748 p->data, p->data_size, bnctx);
754 && ossl_ec_group_todata(ecg, NULL, params, libctx, propq, bnctx,
761 BN_CTX_end(bnctx);
762 BN_CTX_free(bnctx);