Home
last modified time | relevance | path

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

/freebsd-13-stable/crypto/openssl/ssl/
HDtls13_enc.c370 EVP_CIPHER_CTX *ciph_ctx) in derive_secret_key_and_iv() argument
424 if (EVP_CipherInit_ex(ciph_ctx, ciph, NULL, NULL, NULL, sending) <= 0 in derive_secret_key_and_iv()
425 || !EVP_CIPHER_CTX_ctrl(ciph_ctx, EVP_CTRL_AEAD_SET_IVLEN, ivlen, NULL) in derive_secret_key_and_iv()
426 || (taglen != 0 && !EVP_CIPHER_CTX_ctrl(ciph_ctx, EVP_CTRL_AEAD_SET_TAG, in derive_secret_key_and_iv()
428 || EVP_CipherInit_ex(ciph_ctx, NULL, NULL, key, NULL, -1) <= 0) { in derive_secret_key_and_iv()
466 EVP_CIPHER_CTX *ciph_ctx; in tls13_change_cipher_state() local
490 ciph_ctx = s->enc_read_ctx; in tls13_change_cipher_state()
506 ciph_ctx = s->enc_write_ctx; in tls13_change_cipher_state()
686 iv, ciph_ctx)) { in tls13_change_cipher_state()
742 if (!ktls_check_supported_cipher(s, cipher, ciph_ctx)) in tls13_change_cipher_state()
[all …]