HomeSort by relevance Sort by last modified time
    Searched refs:auth_token (Results 1 - 25 of 33) sorted by null

1 2

  /system/core/gatekeeperd/tests/
gatekeeper_test.cpp 84 hw_auth_token_t *auth_token = local
85 reinterpret_cast<hw_auth_token_t *>(response.auth_token.buffer.get());
87 ASSERT_EQ((uint32_t) HW_AUTH_PASSWORD, ntohl(auth_token->authenticator_type));
88 ASSERT_EQ((uint64_t) 1, auth_token->challenge);
89 ASSERT_NE(~((uint32_t) 0), auth_token->timestamp);
90 ASSERT_NE((uint64_t) 0, auth_token->user_id);
91 ASSERT_NE((uint64_t) 0, auth_token->authenticator_id);
119 hw_auth_token_t *auth_token = local
120 reinterpret_cast<hw_auth_token_t *>(response.auth_token.buffer.get());
122 secure_id_t secure_id = auth_token->user_id
167 hw_auth_token_t *auth_token = local
    [all...]
  /system/gatekeeper/tests/
gatekeeper_device_test.cpp 59 uint8_t *auth_token; local
71 password_payload, password_len, &auth_token, &auth_token_len, &should_reenroll);
82 uint8_t *auth_token; local
94 password_payload, password_len, &auth_token, &auth_token_len, &should_reenroll);
98 hat = reinterpret_cast<hw_auth_token_t *>(auth_token);
109 uint8_t *auth_token = NULL; local
126 password_payload, password_len, &auth_token, &auth_token_len,
129 ASSERT_EQ(NULL, auth_token);
143 password_payload, password_len, &auth_token, &auth_token_len,
154 uint8_t *auth_token = NULL local
179 uint8_t *auth_token = NULL; local
    [all...]
gatekeeper_messages_test.cpp 196 SizedBuffer *auth_token = make_buffer(password_size); local
199 VerifyResponse msg(USER_ID, auth_token);
211 deserialized_password = &deserialized_msg.auth_token;
213 ASSERT_EQ(0, memcmp(msg.auth_token.buffer.get(), deserialized_password->buffer.get(),
  /system/core/gatekeeperd/
SoftGateKeeperDevice.cpp 74 uint32_t provided_password_length, uint8_t **auth_token, uint32_t *auth_token_length,
99 if (auth_token != NULL && auth_token_length != NULL) {
100 *auth_token = response.auth_token.buffer.release();
101 *auth_token_length = response.auth_token.length;
SoftGateKeeperDevice.h 59 * On success, writes the address of a verification token to auth_token,
69 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll);
gatekeeperd.cpp 190 uint8_t *auth_token; local
194 &auth_token, &auth_token_length, request_reenroll);
200 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll) {
221 provided_password, provided_password_length, auth_token, auth_token_length,
228 provided_password, provided_password_length, auth_token, auth_token_length,
239 provided_password, provided_password_length, auth_token, auth_token_length,
243 if (ret == 0 && *auth_token != NULL && *auth_token_length > 0) {
249 status_t ret = service->addAuthToken(*auth_token, *auth_token_length);
IGateKeeperService.h 88 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll) = 0;
  /system/gatekeeper/
gatekeeper_messages.cpp 194 VerifyResponse::VerifyResponse(uint32_t user_id, SizedBuffer *auth_token) {
196 this->auth_token.buffer.reset(auth_token->buffer.release());
197 this->auth_token.length = auth_token->length;
203 memset_s(&auth_token, 0, sizeof(auth_token));
207 if (auth_token.length > 0) {
208 auth_token.buffer.reset();
212 void VerifyResponse::SetVerificationToken(SizedBuffer *auth_token) {
    [all...]
gatekeeper.cpp 155 SizedBuffer auth_token(auth_token_len);
156 memcpy(auth_token.buffer.get(), auth_token_buffer.get(), auth_token_len);
157 response->SetVerificationToken(&auth_token);
217 void GateKeeper::MintAuthToken(UniquePtr<uint8_t> *auth_token, uint32_t *length,
220 if (auth_token == NULL) return;
244 auth_token->reset(reinterpret_cast<uint8_t *>(token));
  /external/autotest/client/common_lib/cros/tendo/
privet_helper.py 130 auth_token='Privet anonymous',
137 @param auth_token: authorization token to be added as 'Authorization'
144 headers = {'Authorization': auth_token}
195 auth_token = '%s %s' % (auth['tokenType'], auth['accessToken'])
196 return auth_token
211 def setup_start(self, data, auth_token):
216 @param auth_token: string auth token returned from privet_auth()
224 auth_token=auth_token, tolerate_failure=True)
227 def wifi_setup_was_successful(self, ssid, auth_token)
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
xmppauth.cc 29 const std::string& auth_token) {
33 auth_token_ = auth_token;
prexmppauth.h 56 const std::string& auth_token) = 0;
xmppauth.h 33 const std::string& auth_token);
  /system/core/trusty/gatekeeper/
trusty_gatekeeper.h 63 uint32_t provided_password_length, uint8_t **auth_token, uint32_t *auth_token_length,
105 * On success, writes the address of a verification token to auth_token,
115 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll);
trusty_gatekeeper.cpp 126 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll) {
148 if (auth_token != NULL && auth_token_length != NULL) {
149 *auth_token = response.auth_token.buffer.release();
150 *auth_token_length = response.auth_token.length;
218 uint32_t provided_password_length, uint8_t **auth_token, uint32_t *auth_token_length,
228 auth_token, auth_token_length, request_reenroll);
  /system/keymaster/
keymaster_enforcement.cpp 452 hw_auth_token_t auth_token;
453 memcpy(&auth_token, auth_token_blob.data, sizeof(hw_auth_token_t));
454 if (auth_token.version != HW_AUTH_TOKEN_VERSION) {
456 auth_token.version, HW_AUTH_TOKEN_VERSION);
460 if (!ValidateTokenSignature(auth_token)) {
465 if (auth_timeout_index == -1 && op_handle && op_handle != auth_token.challenge) {
466 LOG_E("Auth token has the challenge %llu, need %llu", auth_token.challenge, op_handle);
470 if (user_secure_id != auth_token.user_id && user_secure_id != auth_token.authenticator_id) {
471 LOG_I("Auth token SIDs %llu and %llu do not match key SID %llu", auth_token.user_id
    [all...]
  /system/gatekeeper/include/gatekeeper/
gatekeeper_messages.h 156 VerifyResponse(uint32_t user_id, SizedBuffer *auth_token);
160 void SetVerificationToken(SizedBuffer *auth_token);
166 SizedBuffer auth_token; member in struct:gatekeeper::VerifyResponse
gatekeeper.h 175 * to auth_token UniquePtr.
179 void MintAuthToken(UniquePtr<uint8_t> *auth_token, uint32_t *length, uint64_t timestamp,
  /hardware/libhardware/include/hardware/
gatekeeper.h 103 * On success, writes the address of a verification token to auth_token,
125 * - auth_token: on success, a buffer containing the authentication token
126 * resulting from this verification is assigned to *auth_token. The caller
129 * token assigned to *auth_token will be assigned to *auth_token_length
144 uint8_t **auth_token, uint32_t *auth_token_length, bool *request_reenroll);
  /system/core/fingerprintd/
FingerprintDaemonProxy.h 53 void notifyKeystore(const uint8_t *auth_token, const size_t auth_token_length);
FingerprintDaemonProxy.cpp 107 void FingerprintDaemonProxy::notifyKeystore(const uint8_t *auth_token, const size_t auth_token_length) {
108 if (auth_token != NULL && auth_token_length > 0) {
114 status_t ret = service->addAuthToken(auth_token, auth_token_length);
  /external/owasp/sanitizer/tools/
googlecode_upload.py 91 auth_token = base64.b64encode('%s:%s'% (user_name, password))
93 'Authorization': 'Basic %s' % auth_token,
  /external/autotest/server/site_tests/buffet_PrivetSetupFlow/
buffet_PrivetSetupFlow.py 134 auth_token = helper.privet_auth()
137 helper.setup_start(data, auth_token)
188 if not helper.wifi_setup_was_successful(ssid, auth_token):
  /frameworks/base/services/core/jni/
com_android_server_fingerprint_FingerprintService.cpp 71 static void notifyKeystore(uint8_t *auth_token, size_t auth_token_length) {
72 if (auth_token != NULL && auth_token_length > 0) {
78 status_t ret = service->addAuthToken(auth_token, auth_token_length);
  /external/libweave/src/privet/
auth_manager.h 61 bool CreateAccessTokenFromAuth(const std::vector<uint8_t>& auth_token,

Completed in 489 milliseconds

1 2