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 62 static const int MASTER_KEY_SIZE_BYTES = 16;
63 static const int MASTER_KEY_SIZE_BITS = MASTER_KEY_SIZE_BYTES * 8;
82 uint8_t mMasterKey[MASTER_KEY_SIZE_BYTES];
user_state.cpp 98 memcpy(mMasterKey, src->mMasterKey, MASTER_KEY_SIZE_BYTES);
134 uint8_t passwordKey[MASTER_KEY_SIZE_BYTES];
135 generateKeyFromPassword(passwordKey, MASTER_KEY_SIZE_BYTES, pw, mSalt);
160 uint8_t passwordKey[MASTER_KEY_SIZE_BYTES];
161 generateKeyFromPassword(passwordKey, MASTER_KEY_SIZE_BYTES, pw, salt);
167 if (response == ResponseCode::NO_ERROR && masterKeyBlob.getLength() == MASTER_KEY_SIZE_BYTES) {
176 memcpy(mMasterKey, masterKeyBlob.getValue(), MASTER_KEY_SIZE_BYTES);

Completed in 188 milliseconds