Home | History | Annotate | Download | only in ssl

Lines Matching defs:aead

283   const EVP_AEAD *aead = ssl->s3->tmp.new_aead;
306 if (aead == NULL) {
311 key_len = EVP_AEAD_key_length(aead);
313 /* For "stateful" AEADs (i.e. compatibility with pre-AEAD cipher
371 const EVP_AEAD *aead = NULL;
384 if (!ssl_cipher_get_evp_aead(&aead, &mac_secret_len, &fixed_iv_len,
389 key_len = EVP_AEAD_key_length(aead);
390 variable_iv_len = EVP_AEAD_nonce_length(aead);
392 /* For "stateful" AEADs (i.e. compatibility with pre-AEAD cipher suites) the
413 ssl->s3->tmp.new_aead = aead;