HomeSort by relevance Sort by last modified time
    Searched refs:iv_ (Results 1 - 2 of 2) sorted by null

  /system/keymaster/
aes_operation.cpp 323 if (!EVP_CipherInit_ex(&ctx_, cipher, NULL /* engine */, key_, iv_.get(), evp_encrypt_mode()))
363 iv_.reset(dup_array(iv_blob.data, iv_blob.data_length));
364 if (!iv_.get())
500 output_params->push_back(TAG_NONCE, iv_.get(), iv_length_);
534 iv_.reset(new (std::nothrow) uint8_t[iv_length_]);
535 if (!iv_.get())
537 if (RAND_bytes(iv_.get(), iv_length_) != 1)
aes_operation.h 94 UniquePtr<uint8_t[]> iv_; member in class:keymaster::AesEvpOperation

Completed in 81 milliseconds