HomeSort by relevance Sort by last modified time
    Searched refs:CERTIFICATE (Results 1 - 13 of 13) sorted by null

  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
Handshake.java 49 * certificate handshake type
51 public static final byte CERTIFICATE = 11;
CertificateMessage.java 26 import java.security.cert.Certificate;
34 * Represents server/client certificate message
36 * 1.0 spec., 7.4.2. Server certificate; 7.4.6. Client certificate</a>
78 Vector<Certificate> certs_vector = new Vector<Certificate>();
173 return Handshake.CERTIFICATE;
  /build/core/
prebuilt.mk 65 # By setting .CERTIFICATE but not .PRIVATE_KEY, this package will be
66 # mentioned in apkcerts.txt (with certificate set to "PRESIGNED")
68 PACKAGES.$(LOCAL_MODULE).CERTIFICATE := PRESIGNED
71 # If this is not an absolute certificate, assign it to a generic one.
77 PACKAGES.$(LOCAL_MODULE).CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
package.mk 282 # an explicit certificate, use the default.
297 # If this is not an absolute certificate, assign it to a generic one.
302 certificate := $(LOCAL_CERTIFICATE).x509.pem macro
304 $(LOCAL_BUILT_MODULE): $(private_key) $(certificate) $(SIGNAPK_JAR)
306 $(LOCAL_BUILT_MODULE): PRIVATE_CERTIFICATE := $(certificate)
309 PACKAGES.$(LOCAL_PACKAGE_NAME).CERTIFICATE := $(certificate)
  /development/testrunner/
create_test.py 75 LOCAL_PACKAGE_NAME := ${MODULE_NAME}Tests${CERTIFICATE}
151 # include certificate definition if existent in makefile
152 certificate = mk.GetVariable(mk.CERTIFICATE)
153 if certificate:
154 cert_definition = ("\n%s := %s" % (mk.CERTIFICATE, certificate))
159 mapping = {"MODULE_NAME":module_name, "CERTIFICATE":cert_definition}
android_mk.py 34 CERTIFICATE = "LOCAL_CERTIFICATE"
  /frameworks/base/core/java/android/webkit/
CertTool.java 39 static final String CERT = Credentials.CERTIFICATE;
  /frameworks/base/keystore/java/android/security/
Credentials.java 60 public static final String CERTIFICATE = "CERT";
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JDKKeyStore.java 11 import java.security.cert.Certificate;
65 static final int CERTIFICATE = 1;
90 Certificate[] certChain;
95 Certificate obj)
97 this.type = CERTIFICATE;
106 Certificate[] certChain)
117 Certificate[] certChain)
129 Certificate[] certChain)
180 Certificate[] certChain)
323 Certificate[] getCertificateChain(
    [all...]
JDKPKCS12KeyStore.java 18 import java.security.cert.Certificate;
97 static final int CERTIFICATE = 1;
242 * tricky if a certificate appears in more than one chain...
250 Certificate c = (Certificate)certs.remove(alias);
262 c = (Certificate)keyCerts.remove(id);
279 public Certificate engineGetCertificate(
287 Certificate c = (Certificate)certs.get(alias);
297 c = (Certificate)keyCerts.get(id)
    [all...]
  /external/openssl/apps/
CA.sh 8 # CA -newreq ... will generate a certificate request
12 # and the other the certificate) and cat them together and that is what
17 # converts a certificate to a request and then signs it.
85 # create a certificate
88 echo "Certificate is in newcert.pem, private key is in newkey.pem"
91 # create a certificate request
97 # create a certificate request
116 echo "CA certificate filename (or enter to create)"
119 # ask user for existing CA certificate
122 cp_pem $FILE ${CATOP}/$CACERT CERTIFICATE
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertFile.java 36 * Base class that deals with certificate files on the SD card.
91 * Called when an error occurs when reading a certificate file.
100 * Returns a list of certificate files found on the SD card.
119 * Invokes {@link CertInstaller} to install the certificate(s) in the file.
121 * @param file the certificate file
171 intent.putExtra(Credentials.CERTIFICATE, value);
CredentialHelper.java 42 import java.security.cert.Certificate;
86 parseCert(getData(Credentials.CERTIFICATE));
288 Certificate[] certs = entry.getCertificateChain();
292 for (Certificate c : certs) {

Completed in 487 milliseconds