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

  /libcore/crypto/src/main/java/org/conscrypt/
Handshake.java 49 * certificate handshake type
51 public static final byte CERTIFICATE = 11;
CertificateMessage.java 28 * Represents server/client certificate message
30 * 1.0 spec., 7.4.2. Server certificate; 7.4.6. Client certificate</a>
163 return Handshake.CERTIFICATE;
  /external/chromium_org/net/data/ssl/scripts/
generate-redundant-test-chains.sh 13 # certificate that uses the same keypair as C.
17 # SSLInfo objects see the certificate chain as validated rather than as
61 TYPE=D CERTIFICATE=D \
86 TYPE=C2 CERTIFICATE=C2 \
114 TYPE=$i CERTIFICATE=$i \
131 TYPE=D CERTIFICATE=D \
147 TYPE=C CERTIFICATE=C \
170 TYPE=B CERTIFICATE=B \
generate-duplicate-cn-certs.sh 14 # This is used to test that NSS can properly generate unique certificate
50 TYPE=B CERTIFICATE=B \
93 TYPE=B CERTIFICATE=B \
108 TYPE=B CERTIFICATE=B \
  /development/testrunner/
create_test.py 75 LOCAL_PACKAGE_NAME := ${MODULE_NAME}Tests${CERTIFICATE}
152 # include certificate definition if existent in makefile
153 certificate = mk.GetVariable(mk.CERTIFICATE)
154 if certificate:
155 cert_definition = ("\n%s := %s" % (mk.CERTIFICATE, certificate))
160 mapping = {"MODULE_NAME":module_name, "CERTIFICATE":cert_definition}
android_mk.py 37 CERTIFICATE = "LOCAL_CERTIFICATE"
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
CertificateMessageTest.java 36 private static String base64certEncoding = "-----BEGIN CERTIFICATE-----\n"
53 + "-----END CERTIFICATE-----\n";
62 assertEquals("incorrect type", Handshake.CERTIFICATE, message.getType());
91 assertEquals("incorrect type", Handshake.CERTIFICATE, message.getType());
  /external/chromium_org/third_party/tlslite/tlslite/
X509.py 1 """Class representing an X.509 certificate."""
9 """This class represents an X.509 certificate.
12 @ivar bytes: The DER-encoded ASN.1 certificate
15 @ivar publicKey: The subject public key from the certificate.
27 """Parse a PEM-encoded X.509 certificate.
30 @param s: A PEM-encoded X.509 certificate (i.e. a base64-encoded
31 certificate wrapped with "-----BEGIN CERTIFICATE-----" and
32 "-----END CERTIFICATE-----" tags).
35 start = s.find("-----BEGIN CERTIFICATE-----"
    [all...]
X509CertChain.py 1 """Class representing an X.509 certificate chain."""
11 starting with the end-entity certificate and with every
12 subsequent certificate certifying the previous.
20 starting with the end-entity certificate and with every
21 subsequent certificate certifying the previous.
29 """Parse a PEM-encoded X.509 certificate file chain file.
32 @param s: A PEM-encoded (eg: Base64) X.509 certificate file, with every
33 certificate wrapped within "-----BEGIN CERTIFICATE-----" and
34 "-----END CERTIFICATE-----" tags). Extraneous data outside such tags
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/
BcKeyStoreSpi.java 20 import java.security.cert.Certificate;
73 static final int CERTIFICATE = 1;
101 Certificate[] certChain;
106 Certificate obj)
108 this.type = CERTIFICATE;
117 Certificate[] certChain)
129 Certificate[] certChain)
180 Certificate[] certChain)
323 Certificate[] getCertificateChain()
335 Certificate cert
    [all...]
  /build/core/
prebuilt.mk 128 # By setting .CERTIFICATE but not .PRIVATE_KEY, this package will be
129 # mentioned in apkcerts.txt (with certificate set to "PRESIGNED")
131 PACKAGES.$(LOCAL_MODULE).CERTIFICATE := PRESIGNED
134 # If this is not an absolute certificate, assign it to a generic one.
140 PACKAGES.$(LOCAL_MODULE).CERTIFICATE := $(LOCAL_CERTIFICATE).x509.pem
package.mk 359 # an explicit certificate, use the default.
374 # If this is not an absolute certificate, assign it to a generic one.
379 certificate := $(LOCAL_CERTIFICATE).x509.pem macro
381 $(LOCAL_BUILT_MODULE): $(private_key) $(certificate) $(SIGNAPK_JAR)
383 $(LOCAL_BUILT_MODULE): PRIVATE_CERTIFICATE := $(certificate)
386 PACKAGES.$(LOCAL_PACKAGE_NAME).CERTIFICATE := $(certificate)
  /external/chromium_org/third_party/openssl/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...]
  /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...]
  /external/chromium_org/net/quic/crypto/
common_cert_set_1_50.inc 10 Certificate:
15 Issuer: C=US, O=Equifax, OU=Equifax Secure Certificate Authority
36 Certificate Sign, CRL Sign
58 -----BEGIN CERTIFICATE-----
74 -----END CERTIFICATE-----
138 Certificate:
143 Issuer: C=US, O=Equifax, OU=Equifax Secure Certificate Authority
180 Certificate Sign, CRL Sign
186 X509v3 Certificate Policies:
199 -----BEGIN CERTIFICATE----
    [all...]
common_cert_set_51_100.inc 10 Certificate:
53 Certificate Sign, CRL Sign
54 X509v3 Certificate Policies:
76 -----BEGIN CERTIFICATE-----
103 -----END CERTIFICATE-----
212 Certificate:
260 Certificate Sign, CRL Sign
284 -----BEGIN CERTIFICATE-----
311 -----END CERTIFICATE-----
420 Certificate
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java 22 import java.security.cert.Certificate;
106 static final int CERTIFICATE = 1;
243 * tricky if a certificate appears in more than one chain...
251 Certificate c = (Certificate)certs.remove(alias);
263 c = (Certificate)keyCerts.remove(id);
275 public Certificate engineGetCertificate(
283 Certificate c = (Certificate)certs.get(alias);
293 c = (Certificate)keyCerts.get(id)
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 376 milliseconds