OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EVP_AEAD_key_length
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/boringssl/src/include/openssl/
aead.h
137
/*
EVP_AEAD_key_length
returns the length, in bytes, of the keys used by
139
OPENSSL_EXPORT size_t
EVP_AEAD_key_length
(const EVP_AEAD *aead);
/external/chromium_org/third_party/boringssl/src/crypto/cipher/
aead.c
25
size_t
EVP_AEAD_key_length
(const EVP_AEAD *aead) { return aead->key_len; }
/external/chromium_org/third_party/boringssl/src/tool/
speed.cc
168
const size_t key_len =
EVP_AEAD_key_length
(aead);
/external/chromium_org/third_party/boringssl/src/ssl/
t1_enc.c
509
key_len =
EVP_AEAD_key_length
(aead);
512
* |
EVP_AEAD_key_length
| will include the MAC key bytes. */
597
key_len =
EVP_AEAD_key_length
(aead);
605
* |
EVP_AEAD_key_length
| will include the MAC key bytes. */
[
all
...]
Completed in 269 milliseconds