Lines Matching defs:ctx
24 BN_CTX *ctx = NULL;
32 ctx = BN_CTX_new_ex(NULL);
33 if (ctx == NULL)
36 BN_CTX_start(ctx);
37 tmp = BN_CTX_get(ctx);
56 if (ctx != NULL) {
57 BN_CTX_end(ctx);
58 BN_CTX_free(ctx);
71 BN_CTX *ctx = NULL;
77 ctx = BN_CTX_new_ex(NULL);
78 if (ctx == NULL)
80 BN_CTX_start(ctx);
81 tmp = BN_CTX_get(ctx);
85 || !BN_mod_exp(tmp, pub_key, params->q, params->p, ctx))
95 if (ctx != NULL) {
96 BN_CTX_end(ctx);
97 BN_CTX_free(ctx);