/third_party/openssl/ssl/ |
D | s3_msg.c | 29 if (!s->method->ssl3_enc->setup_key_block(s)) in ssl3_do_change_cipher_spec() 33 if (!s->method->ssl3_enc->change_cipher_state(s, i)) in ssl3_do_change_cipher_spec() 45 desc = s->method->ssl3_enc->alert_value(desc); in ssl3_send_alert()
|
D | ssl_local.h | 319 # define SSL_IS_DTLS(s) (s->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) 338 (s->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_EXPLICIT_IV) 344 (s->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_SIGALGS) 350 (s->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_TLS1_2_CIPHERS) 468 const struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */ member 1980 s->method->ssl3_enc->set_handshake_header((s), (pkt), (htype)) 1982 s->method->ssl3_enc->close_construct_packet((s), (pkt), (htype)) 1983 # define ssl_do_write(s) s->method->ssl3_enc->do_write(s)
|
D | ssl_ciph.c | 673 if (((ssl_method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) == 0) && in ssl_cipher_collect_ciphers() 676 if (((ssl_method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) != 0) && in ssl_cipher_collect_ciphers() 1248 if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_TLS1_2_CIPHERS)) { in check_suiteb_cipher_list()
|
D | s3_lib.c | 3235 ssl3_enc, 4548 if (s->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_SHA256_PRF) { in ssl_get_algorithm2() 4633 if (!s->method->ssl3_enc->generate_master_secret(s, in ssl_generate_master_secret() 4646 if (!s->method->ssl3_enc->generate_master_secret(s, in ssl_generate_master_secret()
|
D | tls13_enc.c | 302 if (str == s->method->ssl3_enc->server_finished_label) { in tls13_final_finish_mac()
|
D | ssl_lib.c | 2956 return s->method->ssl3_enc->export_keying_material(s, out, olen, label, in SSL_export_keying_material() 3106 if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS)) in SSL_CTX_new()
|
/third_party/openssl/ssl/statem/ |
D | statem_lib.c | 549 && (!s->method->ssl3_enc->change_cipher_state(s, in tls_construct_finished() 556 sender = s->method->ssl3_enc->server_finished_label; in tls_construct_finished() 557 slen = s->method->ssl3_enc->server_finished_label_len; in tls_construct_finished() 559 sender = s->method->ssl3_enc->client_finished_label; in tls_construct_finished() 560 slen = s->method->ssl3_enc->client_finished_label_len; in tls_construct_finished() 563 finish_md_len = s->method->ssl3_enc->final_finish_mac(s, in tls_construct_finished() 681 sender = s->method->ssl3_enc->server_finished_label; in ssl3_take_mac() 682 slen = s->method->ssl3_enc->server_finished_label_len; in ssl3_take_mac() 684 sender = s->method->ssl3_enc->client_finished_label; in ssl3_take_mac() 685 slen = s->method->ssl3_enc->client_finished_label_len; in ssl3_take_mac() [all …]
|
D | statem_srvr.c | 755 if (!s->method->ssl3_enc->setup_key_block(s)) { in ossl_statem_server_pre_work() 896 if (!s->method->ssl3_enc->setup_key_block(s) in ossl_statem_server_post_work() 897 || !s->method->ssl3_enc->change_cipher_state(s, in ossl_statem_server_post_work() 904 && !s->method->ssl3_enc->change_cipher_state(s, in ossl_statem_server_post_work() 928 if (!s->method->ssl3_enc->change_cipher_state(s, in ossl_statem_server_post_work() 960 if (!s->method->ssl3_enc->generate_master_secret(s, in ossl_statem_server_post_work() 963 || !s->method->ssl3_enc->change_cipher_state(s, in ossl_statem_server_post_work() 4292 if (!s->method->ssl3_enc->change_cipher_state(s, in tls_process_end_of_early_data()
|
D | statem_clnt.c | 808 if (!s->method->ssl3_enc->setup_key_block(s)) { in ossl_statem_client_post_work() 813 if (!s->method->ssl3_enc->change_cipher_state(s, in ossl_statem_client_post_work() 855 if (!s->method->ssl3_enc->change_cipher_state(s, in ossl_statem_client_post_work() 1736 && (!s->method->ssl3_enc->setup_key_block(s) in tls_process_server_hello() 1737 || !s->method->ssl3_enc->change_cipher_state(s, in tls_process_server_hello() 3568 && (!s->method->ssl3_enc->change_cipher_state(s, in tls_construct_client_certificate()
|
/third_party/openssl/ssl/record/ |
D | ssl3_record.c | 518 i = s->method->ssl3_enc->mac(s, thisrr, md, 0 /* not send */ ); in ssl3_get_record() 529 enc_err = s->method->ssl3_enc->enc(s, rr, num_recs, 0); in ssl3_get_record() 632 i = s->method->ssl3_enc->mac(s, thisrr, md, 0 /* not send */ ); in ssl3_get_record() 846 int ssl3_enc(SSL *s, SSL3_RECORD *inrecs, size_t n_recs, int sending) in ssl3_enc() function 1662 i = s->method->ssl3_enc->mac(s, rr, md, 0 /* not send */ ); in dtls1_process_record() 1670 enc_err = s->method->ssl3_enc->enc(s, rr, 1, 0); in dtls1_process_record() 1757 i = s->method->ssl3_enc->mac(s, rr, md, 0 /* not send */ ); in dtls1_process_record()
|
D | rec_layer_d1.c | 928 if (!s->method->ssl3_enc->mac(s, &wr, in do_dtls1_write() 945 if (s->method->ssl3_enc->enc(s, &wr, 1, 1) < 1) { in do_dtls1_write() 954 if (!s->method->ssl3_enc->mac(s, &wr, in do_dtls1_write()
|
D | record.h | 214 __owur int ssl3_enc(SSL *s, SSL3_RECORD *inrecs, size_t n_recs, int send);
|
D | rec_layer_s3.c | 966 || !s->method->ssl3_enc->mac(s, thiswr, mac, 1)) { in do_ssl3_write() 1011 if (s->method->ssl3_enc->enc(s, wr, numpipes, 1) < 1) { in do_ssl3_write() 1041 || !s->method->ssl3_enc->mac(s, thiswr, mac, 1)) { in do_ssl3_write()
|
/third_party/openssl/crypto/err/ |
D | openssl.txt | 1209 SSL_F_SSL3_ENC:608:ssl3_enc
|
/third_party/openssl/ |
D | CHANGES | 10036 ssl3_enc (ssl/s3_enc.c) and tls1_enc (ssl/t1_enc.c).
|