Home
last modified time | relevance | path

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

/system/keymaster/
Daes_operation.cpp180 memset_s(aad_block_buf_.get(), AES_BLOCK_SIZE, 0); in ~AesEvpOperation()
187 aad_block_buf_.reset(new (std::nothrow) uint8_t[AES_BLOCK_SIZE]); in Begin()
188 if (!aad_block_buf_.get()) in Begin()
340 aad_block_buf_.reset(new (std::nothrow) uint8_t[AES_BLOCK_SIZE]); in InitializeCipher()
341 if (!aad_block_buf_.get()) in InitializeCipher()
418 if (EVP_CipherUpdate(&ctx_, nullptr /* out */, &output_written, aad_block_buf_.get(), in ProcessBufferedAadBlock()
442 memcpy(aad_block_buf_.get() + aad_block_buf_length_, aad->data, to_buffer); in FillBufferedAadBlock()
Daes_operation.h95 UniquePtr<uint8_t[]> aad_block_buf_; variable