HomeSort by relevance Sort by last modified time
    Searched defs:Credentials (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/sandbox/linux/services/
credentials.h 21 // This class should be used to manipulate the current process' credentials.
24 class Credentials {
26 Credentials();
27 ~Credentials();
74 DISALLOW_COPY_AND_ASSIGN(Credentials);
credentials.cc 5 #include "sandbox/linux/services/credentials.h"
153 Credentials::Credentials() {
156 Credentials::~Credentials() {
159 bool Credentials::HasOpenDirectory(int proc_fd) {
210 bool Credentials::DropAllCapabilities() {
218 bool Credentials::HasAnyCapability() const {
226 scoped_ptr<std::string> Credentials::GetCurrentCapString() const {
234 bool Credentials::MoveToNewUserNS()
    [all...]
  /external/apache-http/src/org/apache/http/auth/
Credentials.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/auth/Credentials.java $
36 * User name and password based authentication credentials.
43 public interface Credentials {
  /frameworks/base/core/java/android/net/
Credentials.java 20 * A class for representing UNIX credentials passed via ancillary data
23 public class Credentials {
31 public Credentials (int pid, int uid, int gid) {
  /external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java 33 * Credentials that are used in authentication and authorization headers.
38 public class Credentials extends SIPObject {
64 public Credentials() {
130 Credentials retval = (Credentials) super.clone();
  /frameworks/base/keystore/java/android/security/
AndroidKeyPairGenerator.java 92 Credentials.deleteAllTypesForAlias(mKeyStore, alias);
97 final String privateKeyAlias = Credentials.USER_PRIVATE_KEY + alias;
136 Credentials.deleteAllTypesForAlias(mKeyStore, alias);
144 Credentials.deleteAllTypesForAlias(mKeyStore, alias);
148 if (!mKeyStore.put(Credentials.USER_CERTIFICATE + alias, certBytes, KeyStore.UID_SELF,
150 Credentials.deleteAllTypesForAlias(mKeyStore, alias);
AndroidKeyStore.java 62 * PrivateKeyEntry will have a Credentials.USER_PRIVATE_KEY as the private key,
63 * Credentials.USER_CERTIFICATE as the first certificate in the chain (the one
64 * that corresponds to the private key), and then a Credentials.CA_CERTIFICATE
67 * TrustedCertificateEntry will just have a Credentials.CA_CERTIFICATE entry
86 return engine.getPrivateKeyById(Credentials.USER_PRIVATE_KEY + alias);
107 final byte[] caBytes = mKeyStore.get(Credentials.CA_CERTIFICATE + alias);
133 byte[] certificate = mKeyStore.get(Credentials.USER_CERTIFICATE + alias);
138 certificate = mKeyStore.get(Credentials.CA_CERTIFICATE + alias);
184 Date d = getModificationDate(Credentials.USER_PRIVATE_KEY + alias);
189 d = getModificationDate(Credentials.USER_CERTIFICATE + alias)
    [all...]
Credentials.java 47 public class Credentials {
48 private static final String LOGTAG = "Credentials";
50 public static final String INSTALL_ACTION = "android.credentials.INSTALL";
52 public static final String INSTALL_AS_USER_ACTION = "android.credentials.INSTALL_AS_USER";
54 public static final String UNLOCK_ACTION = "com.android.credentials.UNLOCK";
164 private static Credentials singleton;
166 public static Credentials getInstance() {
168 singleton = new Credentials();
222 return keystore.delKey(Credentials.USER_PRIVATE_KEY + alias)
236 return keystore.delete(Credentials.USER_CERTIFICATE + alias
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 406 # For credentials we need two things, first
415 def __init__(self, credentials, host, request_uri, headers, response, content, http):
419 self.credentials = credentials
449 def __init__(self, credentials, host, request_uri, headers, response, content, http):
450 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
455 headers['authorization'] = 'Basic ' + base64.b64encode("%s:%s" % self.credentials).strip()
461 def __init__(self, credentials, host, request_uri, headers, response, content, http):
462 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
472 self.A1 = "".join([self.credentials[0], ":", self.challenge['realm'], ":", self.credentials[1]])
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 406 # For credentials we need two things, first
415 def __init__(self, credentials, host, request_uri, headers, response, content, http):
419 self.credentials = credentials
449 def __init__(self, credentials, host, request_uri, headers, response, content, http):
450 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
455 headers['authorization'] = 'Basic ' + base64.b64encode("%s:%s" % self.credentials).strip()
461 def __init__(self, credentials, host, request_uri, headers, response, content, http):
462 Authentication.__init__(self, credentials, host, request_uri, headers, response, content, http)
472 self.A1 = "".join([self.credentials[0], ":", self.challenge['realm'], ":", self.credentials[1]])
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar 
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 
  /external/smack/asmack-master/lib/
httpclient-4.1.3.jar 
  /prebuilts/devtools/tools/lib/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/http-client/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 1336 milliseconds

1 2