Searched refs:enc_write_ctx (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10.1/OpenSSL098-52/src/ssl/
H A Ds2_enc.c86 /* make sure it's intialized in case the malloc for enc_write_ctx fails
91 if ((s->enc_write_ctx == NULL) &&
92 ((s->enc_write_ctx=(EVP_CIPHER_CTX *)
96 ws= s->enc_write_ctx;
130 ds=s->enc_write_ctx;
H A Dd1_enc.c153 ds=s->enc_write_ctx;
155 if (s->enc_write_ctx == NULL)
159 enc=EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
H A Ddtls1.h118 EVP_CIPHER_CTX *enc_write_ctx; /* cryptographic state */ member in struct:dtls1_retransmit_state
H A Dd1_both.c279 if (s->enc_write_ctx &&
280 (EVP_CIPHER_mode( s->enc_write_ctx->cipher) & EVP_CIPH_CBC_MODE))
281 blocksize = 2 * EVP_CIPHER_block_size(s->enc_write_ctx->cipher);
1198 frag->msg_header.saved_retransmit_state.enc_write_ctx = s->enc_write_ctx;
1276 saved_state.enc_write_ctx = s->enc_write_ctx;
1286 s->enc_write_ctx = frag->msg_header.saved_retransmit_state.enc_write_ctx;
1302 s->enc_write_ctx
[all...]
H A Ds3_enc.c256 if (s->enc_write_ctx != NULL)
258 else if ((s->enc_write_ctx=OPENSSL_malloc(sizeof(EVP_CIPHER_CTX))) == NULL)
262 EVP_CIPHER_CTX_init(s->enc_write_ctx);
263 dd= s->enc_write_ctx;
455 ds=s->enc_write_ctx;
457 if (s->enc_write_ctx == NULL)
460 enc=EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
H A Dt1_enc.c310 if (s->enc_write_ctx != NULL)
312 else if ((s->enc_write_ctx=OPENSSL_malloc(sizeof(EVP_CIPHER_CTX))) == NULL)
316 EVP_CIPHER_CTX_init(s->enc_write_ctx);
317 dd= s->enc_write_ctx;
550 ds=s->enc_write_ctx;
552 if (s->enc_write_ctx == NULL)
555 enc=EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
H A Dd1_pkt.c1358 (s->enc_write_ctx == NULL) ||
1422 if ( s->enc_write_ctx &&
1423 (EVP_CIPHER_mode( s->enc_write_ctx->cipher ) & EVP_CIPH_CBC_MODE))
1424 bs = EVP_CIPHER_block_size(s->enc_write_ctx->cipher);
H A Dssl_lib.c2414 if (s->enc_write_ctx != NULL)
2416 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
2417 OPENSSL_free(s->enc_write_ctx);
2418 s->enc_write_ctx=NULL;
H A Ds3_pkt.c630 (s->enc_write_ctx == NULL) ||
H A Dssl.h972 EVP_CIPHER_CTX *enc_write_ctx; /* cryptographic state */ member in struct:ssl_st
/macosx-10.10.1/OpenSSL098-52/src/include/openssl/
H A Ddtls1.h118 EVP_CIPHER_CTX *enc_write_ctx; /* cryptographic state */ member in struct:dtls1_retransmit_state
H A Dssl.h972 EVP_CIPHER_CTX *enc_write_ctx; /* cryptographic state */ member in struct:ssl_st

Completed in 207 milliseconds