Home
last modified time | relevance | path

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

/system/keymaster/km_openssl/
Dblock_cipher_operation.h74 keymaster_padding_t padding, bool caller_iv, size_t tag_length,
123 bool caller_iv, size_t tag_length, Key&& key, in BlockCipherEvpEncryptOperation() argument
125 : BlockCipherEvpOperation(KM_PURPOSE_ENCRYPT, block_mode, padding, caller_iv, tag_length, in BlockCipherEvpEncryptOperation()
143 size_t tag_length, Key&& key, in BlockCipherEvpDecryptOperation() argument
146 false /* caller_iv -- don't care */, tag_length, std::move(key), in BlockCipherEvpDecryptOperation()
Dblock_cipher_operation.cpp54 size_t* tag_length) { in GetAndValidateGcmTagLength() argument
75 *tag_length = tag_length_bits / 8; in GetAndValidateGcmTagLength()
98 size_t tag_length = 0; in CreateOperation() local
100 *error = GetAndValidateGcmTagLength(begin_params, key.authorizations(), &tag_length); in CreateOperation()
122 block_mode, padding, caller_nonce, tag_length, std::move(key), in CreateOperation()
127 block_mode, padding, tag_length, std::move(key), GetCipherDescription())); in CreateOperation()
148 size_t tag_length, Key&& key, in BlockCipherEvpOperation() argument
151 caller_iv_(caller_iv), tag_length_(tag_length), data_started_(false), padding_(padding), in BlockCipherEvpOperation()
/system/logging/logd/
DLogBufferTest.cpp254 int tag_length = 2 + rand() % 10; in GenerateRandomLogMessage() local
255 for (int i = 0; i < tag_length; ++i) { in GenerateRandomLogMessage()