Home
last modified time | relevance | path

Searched refs:encryptedChunks (Results 1 – 6 of 6) sorted by relevance

/aosp12/system/security/identity/
H A DCredentialData.cpp104 for (const vector<uint8_t>& encryptedChunk : entryData.encryptedChunks) { in saveToDisk()
235 vector<vector<uint8_t>> encryptedChunks; in parseEncryptedChunks() local
242 encryptedChunks.push_back(itemBstr->value()); in parseEncryptedChunks()
244 return encryptedChunks; in parseEncryptedChunks()
356 optional<vector<vector<uint8_t>>> encryptedChunks = in loadFromDisk() local
358 if (!encryptedChunks) { in loadFromDisk()
366 data.encryptedChunks = encryptedChunks.value(); in loadFromDisk()
H A DWritableCredential.cpp238 vector<vector<uint8_t>> encryptedChunks; in personalize() local
245 encryptedChunks.push_back(encryptedChunk); in personalize()
250 eData.encryptedChunks = std::move(encryptedChunks); in personalize()
H A DCredentialData.h50 vector<vector<uint8_t>> encryptedChunks; member
H A DCredential.cpp483 for (const auto& encryptedChunk : eData.value().encryptedChunks) { in getEntries()
/aosp12/hardware/interfaces/identity/aidl/vts/
H A DUtil.cpp157 vector<vector<uint8_t>> encryptedChunks; in addEntry() local
175 encryptedChunks.push_back(encryptedContent); in addEntry()
178 encryptedBlobs[&entry] = encryptedChunks; in addEntry()
H A DEndToEndTests.cpp429 const vector<vector<uint8_t>>& encryptedChunks = it->second; in TEST_P() local
432 for (const auto& encryptedChunk : encryptedChunks) { in TEST_P()