/external/chromium_org/net/data/ssl/scripts/ |
generate-bad-eku-certs.sh | 10 # don't accept such certs as web server certs. 54 # Generate EE certs.
|
/external/chromium_org/net/quic/crypto/ |
proof_verifier.h | 59 // |server_config| by the public key in the leaf certificate of |certs|, and 60 // that |certs| is a valid chain for |hostname|. On success, it returns 75 const std::vector<std::string>& certs,
|
common_cert_set.cc | 25 // certs is an array of |num_certs| pointers to the DER encoded certificates. 26 const unsigned char* const* certs; member in struct:net::__anon9274::CertSet 82 reinterpret_cast<const char*>(kSets[i].certs[index]), 117 int n = Compare(cert, kSets[j].certs[mid], kSets[j].lens[mid]);
|
quic_crypto_client_config.cc | 123 void QuicCryptoClientConfig::CachedState::SetProof(const vector<string>& certs, 126 signature != server_config_sig_ || certs_.size() != certs.size(); 130 if (certs_[i] != certs[i]) { 143 certs_ = certs; 171 const vector<string>& QuicCryptoClientConfig::CachedState::certs() const { function in class:net::QuicCryptoClientConfig::CachedState 278 const vector<string>& certs = cached->certs(); local 279 // We save |certs| in the QuicCryptoNegotiatedParameters so that, if the 283 out_params->cached_certs = certs; 284 if (!certs.empty()) 523 vector<string> certs; local [all...] |
proof_verifier_chromium.cc | 47 const vector<string>& certs, 68 if (certs.empty()) { 69 *error_details = "Failed to create certificate chain. Certs are empty."; 76 // Convert certs to X509Certificate. 77 vector<StringPiece> cert_pieces(certs.size()); 78 for (unsigned i = 0; i < certs.size(); i++) { 79 cert_pieces[i] = base::StringPiece(certs[i]); 92 if (!VerifySignature(server_config, signature, certs[0])) {
|
proof_verifier_chromium.h | 44 const std::vector<std::string>& certs, 70 // |hostname| specifies the hostname for which |certs| is a valid chain.
|
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
CredentialHelper.java | 107 ArrayList<byte[]> certs = new ArrayList<byte[]>(mCaCerts.size() + 1); local 109 certs.add(mUserCert.getEncoded()); 112 certs.add(cert.getEncoded()); 114 outStates.putByteArray(CERTS_KEY, Util.toBytes(certs)); 128 ArrayList<byte[]> certs = Util.fromBytes(savedStates.getByteArray(CERTS_KEY)); local 129 for (byte[] cert : certs) { 355 Certificate[] certs = entry.getCertificateChain(); local 356 Log.d(TAG, "# certs extracted = " + certs.length); 357 mCaCerts = new ArrayList<X509Certificate>(certs.length) [all...] |
/cts/hostsidetests/appsecurity/test-apps/AppWithData/ |
Android.mk | 27 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey1
|
/cts/hostsidetests/appsecurity/test-apps/InstrumentationAppDiffCert/ |
Android.mk | 28 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey2
|
/cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/ |
Android.mk | 28 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey1
|
/cts/hostsidetests/appsecurity/test-apps/PermissionDeclareAppCompat/ |
Android.mk | 28 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey1
|
/cts/hostsidetests/appsecurity/test-apps/SharedUidInstallDiffCert/ |
Android.mk | 28 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey2
|
/cts/hostsidetests/appsecurity/test-apps/SimpleAppInstall/ |
Android.mk | 28 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey1
|
/cts/hostsidetests/appsecurity/test-apps/SimpleAppInstallDiffCert/ |
Android.mk | 28 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey2
|
/cts/hostsidetests/appsecurity/test-apps/TargetInstrumentationApp/ |
Android.mk | 28 LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey1
|
/external/chromium/crypto/ |
nss_util_internal.h | 17 // public-key data only (e.g. server certs). Caller must release
|
/external/chromium_org/chromeos/network/onc/ |
onc_utils_unittest.cc | 108 CertPEMsByGUIDMap certs; local 109 certs["cert_google"] = "pem_google"; 110 certs["cert_webkit"] = "pem_webkit"; 131 bool success = ResolveServerCertRefsInNetworks(certs,
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
PKIXCertPathValidatorSpi.java | 77 List certs = certPath.getCertificates(); local 78 int n = certs.size(); 80 if (certs.isEmpty()) 86 X509Certificate cert = (X509Certificate) certs.get(0); 117 trust = CertPathValidatorUtilities.findTrustAnchor((X509Certificate) certs.get(certs.size() - 1), 122 throw new CertPathValidatorException(e.getMessage(), e, certPath, certs.size() - 1); 256 && !paramsPKIX.getTargetConstraints().match((X509Certificate) certs.get(0))) 274 for (index = certs.size() - 1; index >= 0; index--) 298 cert = (X509Certificate) certs.get(index) [all...] |
/external/chromium/net/base/ |
cert_database_openssl.cc | 39 void CertDatabase::ListCerts(CertificateList* certs) { 70 int CertDatabase::ExportToPKCS12(const CertificateList& certs,
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
user_network_configuration_updater.cc | 65 net::CertificateList* certs) const { 66 *certs = web_trust_certs_;
|
/external/chromium_org/content/public/browser/ |
cert_store.h | 21 // This class is used by the SSLManager to keep track of the certs associated 24 // Note that the cert ids will overflow if we register more than 2^32 - 1 certs
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
CertificateFactory3Test.java | 90 Certificate[] certs = new Certificate[3]; local 92 certs[i] = certFs[i].generateCertificate(new ByteArrayInputStream( 95 assertEquals(certs[0], certs[1]); 96 assertEquals(certs[0], certs[2]);
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
TestCertUtils.java | 69 * real chain of certificates, it's just an array of 3 certs. The method 104 Certificate[] certs = new Certificate[howMany]; local 106 certs[i] = new TestCertificate(Integer.toString(startID + i)); 108 return new TestCertPath(certs); 155 private Certificate[] certs; field in class:TestCertUtils.TestCertPath 165 certs = getCertChain(); 173 * @param certs 175 public TestCertPath(Certificate[] certs) { 177 this.certs = certs; [all...] |
/external/chromium_org/net/third_party/nss/patches/ |
peercertchain2.patch | 26 -** |maxNumCerts| must contain the size of the |certs| array. On successful 28 -** |certs| will contain references to as many certificates as would fit. 33 - PRFileDesc *fd, CERTCertificate **certs, 49 -SSL_PeerCertificateChain(PRFileDesc *fd, CERTCertificate **certs, 80 - certs[0] = CERT_DupCertificate(ss->sec.peerCert); 92 - certs[*numCerts] = CERT_DupCertificate(cur->cert);
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
nseq.c | 133 seq->certs = sk_X509_new_null(); 135 sk_X509_push(seq->certs,x509); 137 if(!sk_X509_num(seq->certs)) 139 BIO_printf (bio_err, "Error reading certs file %s\n", infile); 154 for(i = 0; i < sk_X509_num(seq->certs); i++) { 155 x509 = sk_X509_value(seq->certs, i);
|