/system/connectivity/shill/ |
crypto_des_cbc.h | 54 const std::vector<char>& iv() const { return iv_; } 65 std::vector<char> iv_; member in class:shill::CryptoDESCBC
|
crypto_des_cbc.cc | 50 CHECK_EQ(kBlockSize, iv_.size()); 73 vector<char> iv = iv_; 98 iv_.clear(); 114 iv_.assign(matter_start, matter_start + kBlockSize);
|
crypto_des_cbc_unittest.cc | 95 crypto_.iv_.assign(kTestIV, kTestIV + strlen(kTestIV)); 103 crypto_.iv_.assign(kTestIV, kTestIV + strlen(kTestIV));
|
/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
|