Home
last modified time | relevance | path

Searched refs:SSL_AEAD_CTX (Results 1 – 7 of 7) sorted by relevance

/external/boringssl/src/ssl/
Dssl_aead_ctx.c29 SSL_AEAD_CTX *SSL_AEAD_CTX_new(enum evp_aead_direction_t direction, in SSL_AEAD_CTX_new()
62 SSL_AEAD_CTX *aead_ctx = OPENSSL_malloc(sizeof(SSL_AEAD_CTX)); in SSL_AEAD_CTX_new()
67 OPENSSL_memset(aead_ctx, 0, sizeof(SSL_AEAD_CTX)); in SSL_AEAD_CTX_new()
122 void SSL_AEAD_CTX_free(SSL_AEAD_CTX *aead) { in SSL_AEAD_CTX_free()
130 size_t SSL_AEAD_CTX_explicit_nonce_len(const SSL_AEAD_CTX *aead) { in SSL_AEAD_CTX_explicit_nonce_len()
141 size_t SSL_AEAD_CTX_max_overhead(const SSL_AEAD_CTX *aead) { in SSL_AEAD_CTX_max_overhead()
155 static size_t ssl_aead_ctx_get_ad(SSL_AEAD_CTX *aead, uint8_t out[13], in ssl_aead_ctx_get_ad()
177 int SSL_AEAD_CTX_open(SSL_AEAD_CTX *aead, CBS *out, uint8_t type, in SSL_AEAD_CTX_open()
253 int SSL_AEAD_CTX_seal(SSL_AEAD_CTX *aead, uint8_t *out, size_t *out_len, in SSL_AEAD_CTX_seal()
Dinternal.h375 } SSL_AEAD_CTX; in OPENSSL_MSVC_PRAGMA() typedef
382 SSL_AEAD_CTX *SSL_AEAD_CTX_new(enum evp_aead_direction_t direction, in OPENSSL_MSVC_PRAGMA()
389 void SSL_AEAD_CTX_free(SSL_AEAD_CTX *ctx); in OPENSSL_MSVC_PRAGMA()
393 size_t SSL_AEAD_CTX_explicit_nonce_len(const SSL_AEAD_CTX *ctx); in OPENSSL_MSVC_PRAGMA()
397 size_t SSL_AEAD_CTX_max_overhead(const SSL_AEAD_CTX *ctx); in OPENSSL_MSVC_PRAGMA()
403 int SSL_AEAD_CTX_open(SSL_AEAD_CTX *ctx, CBS *out, uint8_t type, in OPENSSL_MSVC_PRAGMA()
412 int SSL_AEAD_CTX_seal(SSL_AEAD_CTX *ctx, uint8_t *out, size_t *out_len, in OPENSSL_MSVC_PRAGMA()
1462 int (*set_read_state)(SSL *ssl, SSL_AEAD_CTX *aead_ctx); in OPENSSL_MSVC_PRAGMA()
1466 int (*set_write_state)(SSL *ssl, SSL_AEAD_CTX *aead_ctx); in OPENSSL_MSVC_PRAGMA()
1644 SSL_AEAD_CTX *aead_read_ctx; in OPENSSL_MSVC_PRAGMA()
[all …]
Ddtls_method.c106 static int dtls1_set_read_state(SSL *ssl, SSL_AEAD_CTX *aead_ctx) { in dtls1_set_read_state()
124 static int dtls1_set_write_state(SSL *ssl, SSL_AEAD_CTX *aead_ctx) { in dtls1_set_write_state()
Dtls_method.c107 static int ssl3_set_read_state(SSL *ssl, SSL_AEAD_CTX *aead_ctx) { in ssl3_set_read_state()
123 static int ssl3_set_write_state(SSL *ssl, SSL_AEAD_CTX *aead_ctx) { in ssl3_set_write_state()
Ddtls_record.c252 static const SSL_AEAD_CTX *get_write_aead(const SSL *ssl, in get_write_aead()
287 SSL_AEAD_CTX *aead = ssl->s3->aead_write_ctx; in dtls_seal_record()
Dt1_enc.c430 SSL_AEAD_CTX *aead_ctx = SSL_AEAD_CTX_new( in tls1_change_cipher_state()
Dtls13_enc.c163 SSL_AEAD_CTX *traffic_aead = SSL_AEAD_CTX_new( in tls13_set_traffic_key()