Searched refs:iv_ (Results 1 - 5 of 5) sorted by last modified time

/system/keymaster/
H A Daes_operation.cpp323 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)
H A Daes_operation.h94 UniquePtr<uint8_t[]> iv_; member in class:keymaster::AesEvpOperation
/system/connectivity/shill/
H A Dcrypto_des_cbc.cc50 CHECK_EQ(kBlockSize, iv_.size());
73 vector<char> iv = iv_;
98 iv_.clear();
114 iv_.assign(matter_start, matter_start + kBlockSize);
H A Dcrypto_des_cbc.h54 const std::vector<char>& iv() const { return iv_; }
65 std::vector<char> iv_; member in class:shill::CryptoDESCBC
H A Dcrypto_des_cbc_unittest.cc95 crypto_.iv_.assign(kTestIV, kTestIV + strlen(kTestIV));
103 crypto_.iv_.assign(kTestIV, kTestIV + strlen(kTestIV));

Completed in 86 milliseconds