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

/freebsd-9.3-release/crypto/openssl/ssl/
H A Ds2_enc.c86 * make sure it's intialized in case the malloc for enc_write_ctx fails
92 if ((s->enc_write_ctx == NULL) && ((s->enc_write_ctx = (EVP_CIPHER_CTX *)
98 ws = s->enc_write_ctx;
134 ds = s->enc_write_ctx;
H A Dd1_enc.c153 ds = s->enc_write_ctx;
155 if (s->enc_write_ctx == NULL)
158 enc = EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
H A Ddtls1.h117 EVP_CIPHER_CTX *enc_write_ctx; /* cryptographic state */ member in struct:dtls1_retransmit_state
H A Dd1_both.c286 if (s->enc_write_ctx &&
287 (EVP_CIPHER_mode(s->enc_write_ctx->cipher) & EVP_CIPH_CBC_MODE))
288 blocksize = 2 * EVP_CIPHER_block_size(s->enc_write_ctx->cipher);
1226 frag->msg_header.saved_retransmit_state.enc_write_ctx = s->enc_write_ctx;
1302 saved_state.enc_write_ctx = s->enc_write_ctx;
1312 s->enc_write_ctx = frag->msg_header.saved_retransmit_state.enc_write_ctx;
1330 s->enc_write_ctx
[all...]
H A Ds3_enc.c252 if (s->enc_write_ctx != NULL)
254 else if ((s->enc_write_ctx =
261 EVP_CIPHER_CTX_init(s->enc_write_ctx);
262 dd = s->enc_write_ctx;
451 ds = s->enc_write_ctx;
453 if (s->enc_write_ctx == NULL)
456 enc = EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
H A Dt1_enc.c306 if (s->enc_write_ctx != NULL)
308 else if ((s->enc_write_ctx =
315 EVP_CIPHER_CTX_init(s->enc_write_ctx);
316 dd = s->enc_write_ctx;
581 ds = s->enc_write_ctx;
583 if (s->enc_write_ctx == NULL)
586 enc = EVP_CIPHER_CTX_cipher(s->enc_write_ctx);
H A Dd1_pkt.c1402 (s->enc_write_ctx == NULL) || (s->write_hash == NULL))
1468 if (s->enc_write_ctx &&
1469 (EVP_CIPHER_mode(s->enc_write_ctx->cipher) & EVP_CIPH_CBC_MODE))
1470 bs = EVP_CIPHER_block_size(s->enc_write_ctx->cipher);
H A Dssl_lib.c2407 if (s->enc_write_ctx != NULL) {
2408 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
2409 OPENSSL_free(s->enc_write_ctx);
2410 s->enc_write_ctx = NULL;
H A Ds3_pkt.c654 (s->enc_write_ctx == NULL) || (s->write_hash == NULL))
H A Dssl.h1034 EVP_CIPHER_CTX *enc_write_ctx; /* cryptographic state */ member in struct:ssl_st

Completed in 108 milliseconds