/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
CacheTest.java | 35 import java.security.cert.Certificate; 263 List<Certificate> localCerts = response1.handshake().localCertificates(); 264 List<Certificate> serverCerts = response1.handshake().peerCertificates(); [all...] |
CallTest.java | 45 import java.security.cert.Certificate; [all...] |
/external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/ |
UrlConnectionCacheTest.java | 42 import java.security.cert.Certificate; 261 List<Certificate> localCerts = toListOrNull(c1.getLocalCertificates()); 262 List<Certificate> serverCerts = toListOrNull(c1.getServerCertificates()); [all...] |
/libcore/luni/src/test/java/libcore/java/security/cert/ |
X509CertificateTest.java | 41 import java.security.cert.Certificate; 401 * The certificate validity periods in the test certificate MUST lie 544 /* This certificate has no unique ID. */ 548 // TODO: generate certificate that has a SubjectUniqueID field. 552 /* This certificate has no unique ID. */ 556 // TODO: generate certificate that has a IssuerUniqueID field. 608 /* The test certificate is sha1WithRSAEncryption */ 614 /* The test certificate is sha1WithRSAEncryption */ 620 /* The test certificate is sha1WithRSAEncryption * [all...] |
/libcore/ojluni/src/main/java/java/security/cert/ |
X509CertSelector.java | 65 * distinguished name and each issue a certificate with the same serial 70 * Internet X.509 Public Key Infrastructure Certificate and CRL Profile</a> for 71 * definitions of the X.509 certificate extensions mentioned below. 167 * match a single certificate. Although other criteria can be specified 181 * must match the certificate serial number in the 182 * <code>X509Certificate</code>. If <code>null</code>, any certificate 185 * @param serial the certificate serial number to match 420 * in the issuer's certificate. Note, however, that the result of 422 * Identifier>)</code> on the issuer's certificate may NOT be used 427 * In order to use the extension value of the issuer certificate' [all...] |
/prebuilts/go/darwin-x86/src/crypto/tls/ |
conn.go | 39 scts [][]byte // signed certificate timestamps from server 40 peerCertificates []*x509.Certificate 41 // verifiedChains contains the certificate chains that we built, as 43 verifiedChains [][]*x509.Certificate 1016 // VerifyHostname checks that the peer certificate chain is valid for 1029 return errors.New("tls: handshake did not verify certificate chain")
|
/prebuilts/go/darwin-x86/src/net/http/ |
client_test.go | 630 roots, err := x509.ParseCertificates(c.Certificate[len(c.Certificate)-1])
|
/prebuilts/go/linux-x86/src/crypto/tls/ |
conn.go | 39 scts [][]byte // signed certificate timestamps from server 40 peerCertificates []*x509.Certificate 41 // verifiedChains contains the certificate chains that we built, as 43 verifiedChains [][]*x509.Certificate 1016 // VerifyHostname checks that the peer certificate chain is valid for 1029 return errors.New("tls: handshake did not verify certificate chain")
|
/prebuilts/go/linux-x86/src/net/http/ |
client_test.go | 630 roots, err := x509.ParseCertificates(c.Certificate[len(c.Certificate)-1])
|
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
X509CertSelectorTest.java | 417 // Certificate Policies Extension (as specified in rfc 3280) 446 * setCertificate(X509Certificate certificate) method testing. 451 TestCert cert_1 = new TestCert("same certificate"); 452 TestCert cert_2 = new TestCert("other certificate"); 460 assertTrue("The certificate should match the selection criteria.", 462 assertFalse("The certificate should not match the selection criteria.", 465 assertTrue("The certificate should match the selection criteria.", 475 TestCert cert_1 = new TestCert("same certificate"); 476 TestCert cert_2 = new TestCert("other certificate"); 481 assertEquals("The returned certificate should be equal to specified" 1803 TestCert certificate = new TestCert(alt_names_extension); local 1955 TestCert certificate = new TestCert(alt_names_extension); local 2033 TestCert certificate = new TestCert(alt_names_extension); local 2142 org.apache.harmony.security.x509.Certificate certificate = local [all...] |
/prebuilts/go/darwin-x86/src/net/smtp/ |
smtp_test.go | 654 config := &tls.Config{Certificates: []tls.Certificate{keypair}} 718 var localhostCert = []byte(`-----BEGIN CERTIFICATE----- 727 -----END CERTIFICATE-----`)
|
/prebuilts/go/linux-x86/src/net/smtp/ |
smtp_test.go | 654 config := &tls.Config{Certificates: []tls.Certificate{keypair}} 718 var localhostCert = []byte(`-----BEGIN CERTIFICATE----- 727 -----END CERTIFICATE-----`)
|
/external/boringssl/src/ssl/test/runner/ |
conn.go | 43 sctList []byte // signed certificate timestamp list 44 peerCertificates []*x509.Certificate 45 // verifiedChains contains the certificate chains that we built, as 47 verifiedChains [][]*x509.Certificate 55 // certificate. This is only set by a server and is zero if no client [all...] |
/libcore/luni/src/test/java/libcore/javax/crypto/ |
CipherTest.java | 38 import java.security.cert.Certificate; 1724 Certificate certificate = certificateWithKeyUsage(keyUsage); local [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/ |
rfc2459.py | 222 # certificate and CRL specific structures begin here 282 class Certificate(univ.Sequence): [all...] |
/external/conscrypt/src/test/java/org/conscrypt/ |
NativeCryptoTest.java | 33 import java.security.cert.Certificate; 145 X509Certificate certificate = (X509Certificate) ks.getCertificate(caCertAlias); local 146 X500Principal principal = certificate.getIssuerX500Principal(); 162 private static OpenSSLX509Certificate[] encodeCertificateList(Certificate[] chain) 426 // neither private or certificate set 441 // first certificate, then private 460 // first private, then certificate 3028 OpenSSLX509Certificate certificate = OpenSSLX509Certificate.fromX509PemInputStream( local [all...] |
/prebuilts/go/darwin-x86/src/encoding/pem/ |
pem_test.go | 42 if !reflect.DeepEqual(result, certificate) { 43 t.Errorf("#0 got:%#v want:%#v", result, certificate) 205 -----BEGIN CERTIFICATE----- 207 -----BEGIN CERTIFICATE----- 209 Certificate chain 212 -----BEGIN CERTIFICATE----- 214 -----BEGIN CERTIFICATE----- 215 -----BEGIN CERTIFICATE----- 237 -----END CERTIFICATE----- 284 var certificate = &Block{Type: "CERTIFICATE" var [all...] |
/prebuilts/go/linux-x86/src/encoding/pem/ |
pem_test.go | 42 if !reflect.DeepEqual(result, certificate) { 43 t.Errorf("#0 got:%#v want:%#v", result, certificate) 205 -----BEGIN CERTIFICATE----- 207 -----BEGIN CERTIFICATE----- 209 Certificate chain 212 -----BEGIN CERTIFICATE----- 214 -----BEGIN CERTIFICATE----- 215 -----BEGIN CERTIFICATE----- 237 -----END CERTIFICATE----- 284 var certificate = &Block{Type: "CERTIFICATE" var [all...] |
/libcore/ |
openjdk_java_files.mk | 427 ojluni/src/main/java/java/security/cert/Certificate.java \ 454 ojluni/src/main/java/java/security/Certificate.java \ [all...] |
/prebuilts/sdk/11/ |
android.jar | |
/prebuilts/sdk/13/ |
android.jar | |
/prebuilts/sdk/16/ |
android.jar | |
/prebuilts/sdk/22/ |
android.jar | |
/prebuilts/sdk/23/ |
android.jar | |
/prebuilts/sdk/24/ |
android.jar | |