OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tag_length_
(Results
1 - 2
of
2
) sorted by null
/system/keymaster/
aes_operation.cpp
170
: Operation(purpose), block_mode_(block_mode), caller_iv_(caller_iv),
tag_length_
(tag_length),
229
if (
tag_length_
> 0)
379
assert(
tag_length_
> 0);
511
if (!output->reserve(input.available_read() + AES_BLOCK_SIZE +
tag_length_
))
519
if (
tag_length_
> 0) {
520
if (!output->reserve(
tag_length_
))
523
if (!EVP_CIPHER_CTX_ctrl(&ctx_, EVP_CTRL_GCM_GET_TAG,
tag_length_
, output->peek_write()))
525
if (!output->advance_write(
tag_length_
))
550
if (
tag_length_
> 0) {
552
tag_buf_.reset(new (std::nothrow) uint8_t[
tag_length_
]);
[
all
...]
aes_operation.h
97
size_t
tag_length_
;
member in class:keymaster::AesEvpOperation
146
size_t tag_buf_unused() { return
tag_length_
- tag_buf_length_; }
Completed in 118 milliseconds