Home
last modified time | relevance | path

Searched refs:auth_code (Results 1 – 9 of 9) sorted by relevance

/external/autotest/client/common_lib/cros/fake_device_server/client_lib/
Dclient_lib_test.py57 if parsed_args.auth_code == 'URL':
60 elif parsed_args.auth_code:
63 CLIENT_ID, CLIENT_SECRET, parsed_args.auth_code)
77 if not parsed_args.auth_code:
/external/skia/platform_tools/android/bin/
Dhttp_download.py47 auth_code = base64.b64encode(username + ':' + password)
49 auth_code = base64.b64encode(username)
50 headers.append(('Authorization', 'Basic ' + auth_code))
/external/libweave/src/privet/
Dsecurity_manager.cc116 const std::vector<uint8_t>& auth_code, in CreateAccessTokenImpl() argument
136 if (!IsValidPairingCode(auth_code)) { in CreateAccessTokenImpl()
148 auth_code, kTtl, access_token, access_token_scope, access_token_ttl, in CreateAccessTokenImpl()
157 const std::string& auth_code, in CreateAccessToken() argument
165 !Base64Decode(auth_code, &auth_decoded)) { in CreateAccessToken()
167 "Invalid auth_code encoding: %s", auth_code.c_str()); in CreateAccessToken()
241 const std::vector<uint8_t>& auth_code) const { in IsValidPairingCode()
245 if (auth_code == HmacSha256(std::vector<uint8_t>(key.begin(), key.end()), in IsValidPairingCode()
Dsecurity_manager.h63 const std::string& auth_code,
97 bool IsValidPairingCode(const std::vector<uint8_t>& auth_code) const;
104 const std::vector<uint8_t>& auth_code,
Dsecurity_delegate.h26 const std::string& auth_code,
Dsecurity_manager_unittest.cc115 std::vector<uint8_t> auth_code{ in PairAndAuthenticate() local
119 std::string auth_code_base64{Base64Encode(auth_code)}; in PairAndAuthenticate()
Dprivet_handler.cc683 std::string auth_code; in HandleAuth() local
684 input.GetString(kAuthCodeKey, &auth_code); in HandleAuth()
689 if (!security_->CreateAccessToken(auth_type, auth_code, desired_scope, in HandleAuth()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/domains/
Dlayer1.py466 idn_lang_code=None, auth_code=None, auto_renew=None, argument
642 if auth_code is not None:
643 params['AuthCode'] = auth_code
/external/libweave/src/
Ddevice_registration_info.cc582 std::string auth_code; in RegisterDeviceOnTicketFinalized() local
587 !json_resp->GetString("robotAccountAuthorizationCode", &auth_code) || in RegisterDeviceOnTicketFinalized()
600 sender2.SetFormData({{"code", auth_code}, in RegisterDeviceOnTicketFinalized()