Home
last modified time | relevance | path

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

/system/security/keystore/
Duser_state.cpp117 blobv3 rawBlob; in copyMasterKeyFile() local
118 size_t length = readFully(in, (uint8_t*)&rawBlob, sizeof(rawBlob)); in copyMasterKeyFile()
127 size_t outLength = writeFully(out, (uint8_t*)&rawBlob, length); in copyMasterKeyFile()
162 blobv3 rawBlob; in readMasterKey() local
163 size_t length = readFully(in, (uint8_t*)&rawBlob, sizeof(rawBlob)); in readMasterKey()
169 if (length > SALT_SIZE && rawBlob.info == SALT_SIZE) { in readMasterKey()
170 salt = (uint8_t*)&rawBlob + length - SALT_SIZE; in readMasterKey()
176 if (rawBlob.type == TYPE_MASTER_KEY) { in readMasterKey()