HomeSort by relevance Sort by last modified time
    Searched full:credentials (Results 51 - 75 of 981) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/dbus/test/data/auth/
external-successful.auth-script 11 ## verify that we now have some credentials
  /external/skia/tools/skp/page_sets/other/
DOWN-skia_br337_desktop.json 4 "credentials_path": "data/credentials.json",
LAYERS-skia_yahoonews_desktop.json 4 "credentials_path": "data/credentials.json",
OLD-skia_galaxynexus_set.json 4 "credentials_path": "data/credentials.json",
skia_maybe_later_set.json 4 "credentials_path": "data/credentials.json",
skia_onlinewsj_nexus10.json 4 "credentials_path": "data/credentials.json",
  /packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainServiceTest.java 25 import android.security.Credentials;
156 String alias1Pkey = (Credentials.USER_PRIVATE_KEY + alias1);
157 String alias1Cert = (Credentials.USER_CERTIFICATE + alias1);
158 String alias1ICert = (Credentials.CA_CERTIFICATE + alias1Intermediate);
159 String alias1RCert = (Credentials.CA_CERTIFICATE + alias1Root);
167 String alias2Pkey = (Credentials.USER_PRIVATE_KEY + alias2);
168 String alias2Cert = (Credentials.USER_CERTIFICATE + alias2);
169 String alias2ICert = (Credentials.CA_CERTIFICATE + alias2Intermediate);
170 String alias2RCert = (Credentials.CA_CERTIFICATE + alias2Root);
178 Credentials.convertToPem(pke1.getCertificate())))
    [all...]
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnUtils.java 20 import android.security.Credentials;
31 final byte[] value = KeyStore.getInstance().get(Credentials.LOCKDOWN_VPN);
36 KeyStore.getInstance().delete(Credentials.LOCKDOWN_VPN);
42 KeyStore.getInstance().put(Credentials.LOCKDOWN_VPN, lockdownKey.getBytes(),
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
appengine.py 46 from oauth2client.client import Credentials
142 """Credentials object for App Engine Assertion Grants
159 scope: string or iterable of strings, scope(s) of the credentials being
201 raise NotImplementedError('Cannot serialize credentials for AppEngine.')
270 """App Engine datastore Property for Credentials.
273 oath2client.Credentials
277 data_type = Credentials
298 credentials = Credentials.new_from_json(value)
300 credentials = Non
503 credentials = CredentialsProperty() variable in class:CredentialsModel
518 credentials = CredentialsNDBProperty() variable in class:.CredentialsNDBModel
603 credentials = property(get_credentials, set_credentials) variable in class:OAuth2Decorator
    [all...]
  /bionic/tools/bionicbb/
gmail.py 39 # Start the OAuth flow to retrieve credentials
44 # Try to retrieve credentials from storage or run the flow to generate them
45 credentials = STORAGE.get()
46 if credentials is None or credentials.invalid:
47 credentials = run(flow, STORAGE, http=http)
49 http = credentials.authorize(http)
  /external/autotest/client/site_tests/platform_CryptohomeTestAuth/
platform_CryptohomeTestAuth.py 35 # Test credentials when the user's directory is mounted
37 raise error.TestFail('Valid credentials should authenticate '
42 raise error.TestFail('Invalid credentials should not authenticate '
51 # Test valid credentials when the user's directory is not mounted
53 raise error.TestFail('Valid credentials should authenticate '
56 # Test invalid credentials fails while not mounted.
58 raise error.TestFail('Invalid credentials should not authenticate '
  /external/jetty/src/java/org/eclipse/jetty/util/security/
Credential.java 31 * Credentials. The Credential class represents an abstract mechanism for
32 * checking authentication credentials. A credential instance either represents
54 * @param credentials The credential to check against. This may either be
57 * @return True if the credentials indicated that the shared secret is known
60 public abstract boolean check(Object credentials);
81 * Unix Crypt Credentials
97 public boolean check(Object credentials)
99 if (credentials instanceof char[])
100 credentials=new String((char[])credentials);
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/public/
.chromeos.gestures.untrusted.write.boto 1 # This file contains credentials and other configuration information needed
3 # credentials) but be careful not to mis-edit any of the variable names (like
4 # "gs_access_key_id") or remove important markers (like the "[Credentials]" and
14 [Credentials]
16 # Google OAuth2 credentials (for "gs://" URIs):
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
anon.py 24 credentials. For example, the gs://uspto-pair bucket contains a number
26 without first obtaining credentials:
33 If a user without credentials attempts to access protected data using gsutil,
34 they will be prompted to run "gsutil config" to obtain credentials.
48 help_one_line_summary='Accessing Public Data Without Credentials',
  /frameworks/base/core/java/android/webkit/
HttpAuthHandler.java 39 * Gets whether the credentials stored for the current host (i.e. the host
41 * are suitable for use. Credentials are not suitable if they have
44 * @return whether the credentials are suitable for use
59 * credentials. Credentials for use with this method can be retrieved from
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
credentials_lib.py 2 """Common credentials classes and constructors."""
52 # credentials. Users can register their own methods here, which we try
58 """Register a new method for fetching credentials.
61 client_info, **kwds -> Credentials or None
90 """Attempt to get credentials, using an oauth dance as the last resort."""
99 credentials = method(client_info, **kwds)
100 if credentials is not None:
101 return credentials
104 credentials = CredentialsFromFile(credentials_filename, client_info,
106 if credentials is not None
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sts/
connection.py 27 from boto.sts.credentials import Credentials, FederationToken, AssumedRole
28 from boto.sts.credentials import DecodeAuthorizationMessage
41 to request temporary, limited-privilege credentials for AWS
47 `Using Temporary Security Credentials`_.
54 Temporary Security Credentials to Access AWS`_ in Using Temporary
55 Security Credentials .
79 Credentials or even search for AWS Credentials to make these
90 # If an anonymous request is sent, do not try to look for credentials
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/scripts/
oauth2l.py 1 """Command-line utility for fetching/inspecting credentials.
4 credentials, or inspecting existing credentials. Here we demonstrate
8 Fetched credentials of type:
69 '(optional) Filename for fetching/storing credentials.')
120 def _Format(fmt, credentials):
121 """Format credentials according to fmt."""
123 return credentials.access_token
125 return 'Authorization: Bearer %s' % credentials.access_token
127 return _PrettyJson(json.loads(credentials.to_json())
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_crypt.py 52 credentials = self._make_signed_jwt_creds()
53 pem_contents = crypt.pkcs12_key_as_pem(credentials.private_key,
54 credentials.private_key_password)
83 credentials = self._make_signed_jwt_creds(private_key=b'NOT_A_KEY')
85 credentials.private_key, credentials.private_key_password)
test_django_orm.py 39 from oauth2client.client import Credentials
56 self.credentials = Credentials()
57 self.pickle = base64.b64encode(pickle.dumps(self.credentials))
63 self.assertTrue(isinstance(self.field.to_python(self.pickle), Credentials))
66 prep_value = self.field.get_db_prep_value(self.credentials,
  /external/autotest/client/site_tests/enterprise_KioskPerf/
control 17 You need a credentials.txt file with user_id:password in this directory for
18 this test to succeed. The credentials are used to enroll the device as a Remora
  /external/autotest/server/site_tests/network_WiFi_ProfileBasic/
control 17 causes us to lose credentials to our currently connected service. Tests
18 that we auto-connect to a WiFi network when credentials become available
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/
_init_environment.py 20 #TODO: you must set the auth credentials to something valid
23 # Here the credentials must be set, but it doesn't matter what
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CredentialHelper.java 26 import android.security.Credentials;
92 mUid = bundle.getInt(Credentials.EXTRA_INSTALL_AS_UID, -1);
93 bundle.remove(Credentials.EXTRA_INSTALL_AS_UID);
108 outStates.putInt(Credentials.EXTRA_INSTALL_AS_UID, mUid);
110 outStates.putByteArray(Credentials.USER_PRIVATE_KEY,
129 mUid = savedStates.getInt(Credentials.EXTRA_INSTALL_AS_UID, -1);
130 byte[] bytes = savedStates.getByteArray(Credentials.USER_PRIVATE_KEY);
190 return mBundle.containsKey(Credentials.EXTRA_PUBLIC_KEY)
191 && mBundle.containsKey(Credentials.EXTRA_PRIVATE_KEY);
271 Intent intent = new Intent("com.android.credentials.INSTALL")
    [all...]
  /development/samples/browseable/DirectBoot/
_index.jd 11 go off after reboot even before the user enters their credentials.

Completed in 958 milliseconds

1 23 4 5 6 7 8 91011>>