Searched refs:ctx2 (Results 1 - 6 of 6) sorted by relevance

/freebsd-9.3-release/crypto/openssl/crypto/rsa/
H A Drsa_x931g.c76 BN_CTX *ctx = NULL, *ctx2 = NULL; local
156 ctx2 = BN_CTX_new();
157 if (!ctx2)
160 rsa->d = BN_mod_inverse(NULL, rsa->e, r0, ctx2); /* d */
179 rsa->iqmp = BN_mod_inverse(NULL, rsa->q, rsa->p, ctx2);
186 if (ctx2)
187 BN_CTX_free(ctx2);
/freebsd-9.3-release/crypto/openssl/fips/rsa/
H A Dfips_rsa_x931g.c79 BN_CTX *ctx = NULL, *ctx2 = NULL; local
159 ctx2 = BN_CTX_new();
160 if (!ctx2)
163 rsa->d = BN_mod_inverse(NULL, rsa->e, r0, ctx2); /* d */
182 rsa->iqmp = BN_mod_inverse(NULL, rsa->q, rsa->p, ctx2);
189 if (ctx2)
190 BN_CTX_free(ctx2);
/freebsd-9.3-release/crypto/openssl/apps/
H A Ds_server.c274 static SSL_CTX *ctx2 = NULL; variable
313 ctx2 = NULL;
635 if (ctx2) {
637 SSL_set_SSL_CTX(s, ctx2);
1278 ctx2 = SSL_CTX_new(meth);
1279 if (ctx2 == NULL) {
1285 if (ctx2) {
1295 if (!SSL_CTX_set_generate_session_id(ctx2, generate_session_id)) {
1302 SSL_CTX_set_quiet_shutdown(ctx2, 1);
1304 SSL_CTX_set_options(ctx2, SSL_OP_AL
[all...]
H A Dx509.c471 X509V3_CTX ctx2; local
490 X509V3_set_ctx_test(&ctx2);
491 X509V3_set_nconf(&ctx2, extconf);
492 if (!X509V3_EXT_add_nconf(extconf, &ctx2, extsect, NULL)) {
1077 X509V3_CTX ctx2; local
1079 X509V3_set_ctx(&ctx2, xca, x, NULL, NULL, 0);
1080 X509V3_set_nconf(&ctx2, conf);
1081 if (!X509V3_EXT_add_nconf(conf, &ctx2, section, x))
/freebsd-9.3-release/crypto/openssl/ssl/
H A Ds3_enc.c525 int ssl3_final_finish_mac(SSL *s, EVP_MD_CTX *ctx1, EVP_MD_CTX *ctx2, argument
532 ret += ssl3_handshake_mac(s, ctx2, sender, len, p);
H A Dssl_locl.h851 int ssl3_final_finish_mac(SSL *s, EVP_MD_CTX *ctx1, EVP_MD_CTX *ctx2,

Completed in 287 milliseconds