Home
last modified time | relevance | path

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

/aosp12/system/gatekeeper/tests/
H A Dgatekeeper_device_test.cpp57 uint8_t *password_handle; in TEST_F() local
64 &password_handle, &password_handle_length); in TEST_F()
80 uint8_t *password_handle; in TEST_F() local
88 &password_handle, &password_handle_length); in TEST_F()
107 uint8_t *password_handle; in TEST_F() local
115 &password_handle, &password_handle_length); in TEST_F()
152 uint8_t *password_handle; in TEST_F() local
177 uint8_t *password_handle; in TEST_F() local
206 uint8_t *password_handle; in TEST_F() local
219 &password_handle, &password_handle_length); in TEST_F()
[all …]
H A Dgatekeeper_messages_test.cpp69 ASSERT_FALSE(deserialized_msg.password_handle); in TEST()
92 ASSERT_FALSE(deserialized_msg.password_handle); in TEST()
99 SizedBuffer password_handle = make_buffer(password_size); in TEST() local
104 …EnrollRequest msg(USER_ID, move(password_handle), move(provided_password), move(enrolled_password)… in TEST()
117 deserialized_handle = &deserialized_msg.password_handle; in TEST()
124 …ASSERT_EQ(0, memcmp(msg.password_handle.Data<uint8_t>(), deserialized_handle->Data<uint8_t>(), pas… in TEST()
167 deserialized_password = &deserialized_msg.password_handle; in TEST()
172 deserialized_password = &deserialized_msg.password_handle; in TEST()
174 ASSERT_EQ(0, memcmp(msg.password_handle.Data<uint8_t>(), deserialized_password->Data<uint8_t>(), in TEST()
/aosp12/system/gatekeeper/
H A Dgatekeeper.cpp37 if (!request.password_handle) { in Enroll()
93 SizedBuffer password_handle; in Enroll() local
94 if (!CreatePasswordHandle(&password_handle, in Enroll()
111 const password_handle_t *password_handle = request.password_handle.Data<password_handle_t>(); in Verify() local
113 if (!password_handle || password_handle->version > HANDLE_VERSION) { in Verify()
184 password_handle_t password_handle; in CreatePasswordHandle() local
186 password_handle.version = handle_version; in CreatePasswordHandle()
187 password_handle.salt = salt; in CreatePasswordHandle()
188 password_handle.user_id = user_id; in CreatePasswordHandle()
189 password_handle.flags = flags; in CreatePasswordHandle()
[all …]
H A Dgatekeeper_messages.cpp165 this->password_handle = move(enrolled_password_handle); in VerifyRequest()
170 return sizeof(challenge) + serialized_buffer_size(password_handle) in nonErrorSerializedSize()
177 append_to_buffer(&buffer, password_handle); in nonErrorSerialize()
184 password_handle = {}; in nonErrorDeserialize()
192 error = read_from_buffer(&payload, end, &password_handle); in nonErrorDeserialize()
236 EnrollRequest::EnrollRequest(uint32_t user_id, SizedBuffer password_handle, in EnrollRequest() argument
242 this->password_handle = move(password_handle); in EnrollRequest()
247 + serialized_buffer_size(password_handle); in nonErrorSerializedSize()
253 append_to_buffer(&buffer, password_handle); in nonErrorSerialize()
261 password_handle = {}; in nonErrorDeserialize()
[all …]
/aosp12/system/gatekeeper/include/gatekeeper/
H A Dgatekeeper_messages.h180 SizedBuffer password_handle; member
199 EnrollRequest(uint32_t user_id, SizedBuffer password_handle,
211 SizedBuffer password_handle; member
H A Dgatekeeper.h201 bool CreatePasswordHandle(SizedBuffer *password_handle, salt_t salt,