Home
last modified time | relevance | path

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

/device/google/cuttlefish/guest/hals/keymint/remote/
Dremote_keymint_operation.cpp53 const vector<uint8_t>& input, const optional<HardwareAuthToken>& authToken, in updateAad() argument
59 if (authToken) { in updateAad()
60 auto tokenAsVec(authToken2AidlVec(*authToken)); in updateAad()
72 const vector<uint8_t>& input, const optional<HardwareAuthToken>& authToken, in update() argument
83 if (authToken) { in update()
84 auto tokenAsVec(authToken2AidlVec(*authToken)); in update()
106 const optional<HardwareAuthToken>& authToken, in finish() argument
123 if (authToken) { in finish()
124 auto tokenAsVec(authToken2AidlVec(*authToken)); in finish()
Dremote_keymint_operation.h47 const optional<HardwareAuthToken>& authToken,
51 const optional<HardwareAuthToken>& authToken,
57 const optional<HardwareAuthToken>& authToken, //
Dremote_keymint_device.cpp374 const optional<HardwareAuthToken>& authToken, BeginResult* result) { in begin() argument
380 vector<uint8_t> vector_token = authToken2AidlVec(authToken); in begin()
Dremote_keymint_device.h68 const optional<HardwareAuthToken>& authToken,
/device/google/cuttlefish/guest/hals/gatekeeper/remote/
Dremote_gatekeeper.cpp54 const hw_auth_token_t* authToken = in sizedBuffer2AidlHWToken() local
56 aidlToken->challenge = authToken->challenge; in sizedBuffer2AidlHWToken()
57 aidlToken->userId = authToken->user_id; in sizedBuffer2AidlHWToken()
58 aidlToken->authenticatorId = authToken->authenticator_id; in sizedBuffer2AidlHWToken()
62 be32toh(authToken->authenticator_type)); in sizedBuffer2AidlHWToken()
63 aidlToken->timestamp.milliSeconds = be64toh(authToken->timestamp); in sizedBuffer2AidlHWToken()
64 aidlToken->mac.insert(aidlToken->mac.begin(), std::begin(authToken->hmac), in sizedBuffer2AidlHWToken()
65 std::end(authToken->hmac)); in sizedBuffer2AidlHWToken()
/device/google/cuttlefish/guest/hals/identity/common/
DIdentityCredential.cpp229 const HardwareAuthToken& authToken, const vector<uint8_t>& itemsRequest, in startRetrieval() argument
273 if (authToken.timestamp.milliSeconds != 0) { in startRetrieval()
275 authToken.challenge, authToken.userId, authToken.authenticatorId, in startRetrieval()
276 int(authToken.authenticatorType), authToken.timestamp.milliSeconds, in startRetrieval()
277 authToken.mac, verificationToken_.challenge, in startRetrieval()
DIdentityCredential.h81 const HardwareAuthToken& authToken, const vector<uint8_t>& itemsRequest,