Home
last modified time | relevance | path

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

/system/security/identity/
DCredentialData.cpp102 for (const vector<uint8_t>& encryptedChunk : entryData.encryptedChunks) { in saveToDisk()
222 vector<vector<uint8_t>> encryptedChunks; in parseEncryptedChunks() local
229 encryptedChunks.push_back(itemBstr->value()); in parseEncryptedChunks()
231 return encryptedChunks; in parseEncryptedChunks()
344 optional<vector<vector<uint8_t>>> encryptedChunks = in loadFromDisk() local
346 if (!encryptedChunks) { in loadFromDisk()
354 data.encryptedChunks = encryptedChunks.value(); in loadFromDisk()
DWritableCredential.cpp218 vector<vector<uint8_t>> encryptedChunks; in personalize() local
225 encryptedChunks.push_back(encryptedChunk); in personalize()
230 eData.encryptedChunks = std::move(encryptedChunks); in personalize()
DCredentialData.h50 vector<vector<uint8_t>> encryptedChunks; member
DCredential.cpp444 for (const auto& encryptedChunk : data.value().encryptedChunks) { in getEntries()