| /src/crypto/external/bsd/openssl/dist/ssl/record/ |
| ssl3_record.c | 557 i = s->method->ssl3_enc->mac(s, thisrr, md, 0 /* not send */ ); 580 enc_err = s->method->ssl3_enc->enc(s, rr, num_recs, 0, macbufs, mac_size); 643 i = s->method->ssl3_enc->mac(s, thisrr, md, 0 /* not send */ ); 840 * ssl3_enc encrypts/decrypts |n_recs| records in |inrecs|. Calls SSLfatal on 848 int ssl3_enc(SSL *s, SSL3_RECORD *inrecs, size_t n_recs, int sending, function 1578 i = s->method->ssl3_enc->mac(s, rr, md, 0 /* not send */ ); 1597 enc_err = s->method->ssl3_enc->enc(s, rr, 1, 0, &macbuf, mac_size); 1629 i = s->method->ssl3_enc->mac(s, rr, md, 0 /* not send */ );
|
| /src/crypto/external/bsd/openssl.old/dist/ssl/record/ |
| ssl3_record.c | 518 i = s->method->ssl3_enc->mac(s, thisrr, md, 0 /* not send */ ); 529 enc_err = s->method->ssl3_enc->enc(s, rr, num_recs, 0); 632 i = s->method->ssl3_enc->mac(s, thisrr, md, 0 /* not send */ ); 836 * ssl3_enc encrypts/decrypts |n_recs| records in |inrecs|. Will call 846 int ssl3_enc(SSL *s, SSL3_RECORD *inrecs, size_t n_recs, int sending) function 1670 i = s->method->ssl3_enc->mac(s, rr, md, 0 /* not send */ ); 1678 enc_err = s->method->ssl3_enc->enc(s, rr, 1, 0); 1765 i = s->method->ssl3_enc->mac(s, rr, md, 0 /* not send */ );
|
| /src/crypto/external/apache2/openssl/dist/ssl/ |
| ssl_local.h | 258 (SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) 262 (ctx->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) 285 (SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_SIGALGS) 291 (SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_TLS1_2_CIPHERS) 438 const struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */ member in struct:ssl_method_st 2177 SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->set_handshake_header((s), (pkt), (htype)) 2179 SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->close_construct_packet((s), (pkt), (htype)) 2180 #define ssl_do_write(s) SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->do_write(s)
|
| /src/crypto/external/bsd/openssl/dist/ssl/ |
| ssl_local.h | 341 # define SSL_IS_DTLS(s) (s->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS) 360 (s->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_EXPLICIT_IV) 366 (s->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_SIGALGS) 372 (s->method->ssl3_enc->enc_flags & SSL_ENC_FLAG_TLS1_2_CIPHERS) 516 const struct ssl3_enc_method *ssl3_enc; /* Extra SSLv3/TLS stuff */ member in struct:ssl_method_st 2105 s->method->ssl3_enc->set_handshake_header((s), (pkt), (htype)) 2107 s->method->ssl3_enc->close_construct_packet((s), (pkt), (htype)) 2108 # define ssl_do_write(s) s->method->ssl3_enc->do_write(s)
|
| /src/crypto/external/bsd/openssl.old/dist/ssl/ |
| 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 in struct:ssl_method_st 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)
|