HomeSort by relevance Sort by last modified time
    Searched refs:MASTER_KEY_SIZE_BYTES (Results 1 - 2 of 2) sorted by null

  /system/security/keystore/
user_state.h 63 static const int MASTER_KEY_SIZE_BYTES = 16;
64 static const int MASTER_KEY_SIZE_BITS = MASTER_KEY_SIZE_BYTES * 8;
83 uint8_t mMasterKey[MASTER_KEY_SIZE_BYTES];
user_state.cpp 100 memcpy(mMasterKey, src->mMasterKey, MASTER_KEY_SIZE_BYTES);
136 uint8_t passwordKey[MASTER_KEY_SIZE_BYTES];
137 generateKeyFromPassword(passwordKey, MASTER_KEY_SIZE_BYTES, pw, mSalt);
164 uint8_t passwordKey[MASTER_KEY_SIZE_BYTES];
165 generateKeyFromPassword(passwordKey, MASTER_KEY_SIZE_BYTES, pw, salt);
173 if (response == ResponseCode::NO_ERROR && masterKeyBlob.getLength() == MASTER_KEY_SIZE_BYTES) {
182 memcpy(mMasterKey, masterKeyBlob.getValue(), MASTER_KEY_SIZE_BYTES);

Completed in 42 milliseconds