Home
last modified time | relevance | path

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

/aosp14/system/core/trusty/keymaster/4.0/
H A DTrustyKeymaster4Device.cpp111 auth_token->version = 0; in injectAuthToken()
112 auth_token->challenge = authToken.challenge; in injectAuthToken()
113 auth_token->user_id = authToken.userId; in injectAuthToken()
115 auth_token->authenticator_type = in injectAuthToken()
117 auth_token->timestamp = htobe64(authToken.timestamp); in injectAuthToken()
118 static_assert(mac_len == sizeof(auth_token->hmac)); in injectAuthToken()
119 memcpy(auth_token->hmac, authToken.mac.data(), mac_len); in injectAuthToken()
316 request.auth_token.challenge = authToken.challenge; in verifyAuthorization()
317 request.auth_token.user_id = authToken.userId; in verifyAuthorization()
320 request.auth_token.timestamp = authToken.timestamp; in verifyAuthorization()
[all …]
/aosp14/frameworks/base/services/core/jni/
H A Dcom_android_server_fingerprint_FingerprintService.cpp71 static void notifyKeystore(uint8_t *auth_token, size_t auth_token_length) { in notifyKeystore() argument
72 if (auth_token != NULL && auth_token_length > 0) { in notifyKeystore()
78 status_t ret = service->addAuthToken(auth_token, auth_token_length); in notifyKeystore()
/aosp14/system/core/trusty/gatekeeper/
H A Dtrusty_gatekeeper.cpp142 sizedBuffer2AidlHWToken(response.auth_token, &rsp->hardwareAuthToken); in verify()