HomeSort by relevance Sort by last modified time
    Searched refs:cert (Results 226 - 250 of 728) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/ssl/
channel_id_store.h 29 // The ChannelID class contains a private key in addition to the cert.
37 const std::string& cert);
52 const std::string& cert() const { return cert_; } function in class:net::ChannelIDStore::ChannelID
75 // output parameters, in which case it will return either OK if a cert is
87 // Adds a server bound cert and the corresponding private key to the store.
93 const std::string& cert) = 0;
95 // Removes a server bound cert and the corresponding private key from the
client_cert_store_unittest-inl.h 37 // implementations of ClientCertStore. These cases test the client cert
70 scoped_refptr<X509Certificate> cert(
72 ASSERT_TRUE(cert.get());
75 certs.push_back(cert);
83 EXPECT_TRUE(selected_certs[0]->Equals(cert.get()));
ssl_client_auth_cache.cc 8 #include "net/cert/x509_certificate.h"
44 void SSLClientAuthCache::OnCertAdded(const X509Certificate* cert) {
ssl_client_auth_cache.h 15 #include "net/cert/cert_database.h"
51 virtual void OnCertAdded(const X509Certificate* cert) OVERRIDE;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakedtlsidentityservice.h 112 std::string cert, key; local
113 GenerateIdentity(message_data->data().common_name, &cert, &key);
114 observer->OnSuccess(cert, key);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContentsClientBridge.java 20 import java.security.cert.CertificateEncodingException;
21 import java.security.cert.X509Certificate;
171 final SslCertificate cert = SslUtil.getCertificateFromDerBytes(derBytes); local
172 if (cert == null) {
176 final SslError sslError = SslUtil.sslErrorFromNetErrorCode(certError, cert, url);
202 ClientCertLookupTable.Cert cert = mLookupTable.getCertData(host, port); local
208 if (cert != null) {
210 cert.mCertChain, cert.mPrivateKey)
    [all...]
  /external/chromium_org/net/cert/
x509_certificate_nss.cc 5 #include "net/cert/x509_certificate.h"
7 #include <cert.h>
24 #include "net/cert/x509_util_nss.h"
52 X509Certificate* cert = CreateFromHandle(cert_handle, OSCertHandles());
56 cert->default_nickname_ = nickname;
58 return cert;
213 OSCertHandle cert) {
217 DCHECK(NULL != cert->derCert.data);
218 DCHECK_NE(0U, cert->derCert.len);
221 cert->derCert.data, cert->derCert.len)
    [all...]
ct_objects_extractor.h 11 #include "net/cert/x509_certificate.h"
20 // leaf cert as an X.509v3 extension with the OID 1.3.6.1.4.1.11129.2.4.2.
25 X509Certificate::OSCertHandle cert,
cert_verify_proc_win.cc 5 #include "net/cert/cert_verify_proc_win.h"
18 #include "net/cert/asn1_util.h"
19 #include "net/cert/cert_status_flags.h"
20 #include "net/cert/cert_verifier.h"
21 #include "net/cert/cert_verify_result.h"
22 #include "net/cert/crl_set.h"
23 #include "net/cert/ev_root_ca_metadata.h"
24 #include "net/cert/test_root_certs.h"
25 #include "net/cert/x509_certificate.h"
26 #include "net/cert/x509_certificate_known_roots_win.h
282 PCCERT_CONTEXT cert = element[num_elements - 1]->pCertContext; local
320 PCCERT_CONTEXT cert = element[i]->pCertContext; local
428 PCCERT_CONTEXT cert = element[i]->pCertContext; local
489 PCCERT_CONTEXT cert = element[i]->pCertContext; local
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLX509CertPath.java 22 import java.security.cert.CertPath;
23 import java.security.cert.Certificate;
24 import java.security.cert.CertificateEncodingException;
25 import java.security.cert.CertificateException;
26 import java.security.cert.X509Certificate;
97 final X509Certificate cert = mCertificates.get(i); local
99 if (cert instanceof OpenSSLX509Certificate) {
100 certs[j] = (OpenSSLX509Certificate) cert;
102 certs[j] = OpenSSLX509Certificate.fromX509Der(cert.getEncoded());
  /external/openssl/crypto/pkcs12/
p12_kiss.c 74 /* Parse and decrypt a PKCS#12 structure returning user key, user cert
76 * or it should point to a valid STACK structure. pkey and cert can be
80 int PKCS12_parse(PKCS12 *p12, const char *pass, EVP_PKEY **pkey, X509 **cert,
95 if(cert)
96 *cert = NULL;
135 if (pkey && *pkey && cert && !*cert)
139 *cert = x;
167 if (cert && *cert)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CollectionCertStoreParametersTest.java 22 package org.apache.harmony.security.tests.java.security.cert;
24 import java.security.cert.CertStoreParameters;
25 import java.security.cert.CollectionCertStoreParameters;
29 import org.apache.harmony.security.tests.support.cert.MyCertificate;
X509CRLSelectorTest.java 22 package org.apache.harmony.security.tests.java.security.cert;
25 import java.security.cert.X509CRLSelector;
39 * @tests java.security.cert.X509CRLSelector#addIssuer(javax.security.auth.x500.X500Principal)
54 * @tests java.security.cert.X509CRLSelector#addIssuerName(java.lang.String)
76 * @tests java.security.cert.X509CRLSelector#addIssuerName(byte[])
90 * @tests java.security.cert.X509CRLSelector#addIssuerName(byte[])
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
CodeSignerTest.java 26 import java.security.cert.CertPath;
TimestampTest.java 25 import java.security.cert.CertPath;
  /external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
DigitalSignatureTest.java 27 import java.security.cert.Certificate;
28 import java.security.cert.CertificateException;
87 Certificate cert = new Certificate("myType") { local
139 dsig.init(cert);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/
MSOutlookKeyIdCalculator.java 1 package org.bouncycastle.cert.selector;
  /external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/
ChromeShellPKCS11AuthenticationManager.java 12 import java.security.cert.X509Certificate;
  /external/chromium_org/chrome/browser/ui/
certificate_dialogs.h 8 #include "net/cert/x509_certificate.h"
21 // Show a dialog to save |cert| alone or the cert + its chain.
24 const scoped_refptr<net::X509Certificate>& cert);
crypto_module_password_dialog_nss.h 34 // Asynchronously unlock the |cert|'s module, if necessary. |callback| is
37 void UnlockCertSlotIfNecessary(net::X509Certificate* cert,
  /external/chromium_org/chromeos/network/
client_cert_resolver.cc 7 #include <cert.h>
27 #include "net/cert/scoped_nss_types.h"
28 #include "net/cert/x509_certificate.h"
65 // Returns true if a private key for certificate |cert| is installed.
66 bool HasPrivateKey(const net::X509Certificate& cert) {
67 PK11SlotInfo* slot = PK11_KeyForCertExists(cert.os_cert_handle(), NULL, NULL);
79 : cert(certificate),
82 scoped_refptr<net::X509Certificate> cert; member in struct:chromeos::__anon10790::CertAndIssuer
88 return (a.cert->valid_expiry() > b.cert->valid_expiry())
139 const net::X509Certificate& cert = **it; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
sslfingerprint.h 28 const rtc::SSLCertificate* cert);
  /external/openssl/crypto/pkcs7/
pk7_enc.c 70 PKCS7_add_signer(PKCS7 *p7,X509 *cert,EVP_PKEY *key);
  /external/chromium_org/chrome/browser/ui/webui/options/
certificate_manager_handler.cc 32 #include "net/cert/x509_certificate.h"
117 explicit CertEquals(const net::X509Certificate* cert) : cert_(cert) {}
118 bool operator()(const scoped_refptr<net::X509Certificate> cert) const {
119 return cert_->Equals(cert.get());
127 net::X509Certificate* cert) {
129 CertEquals(cert)) != web_trust_certs.end();
135 net::X509Certificate* cert) {
136 CertificateViewerModalDialog* dialog = new CertificateViewerModalDialog(cert);
153 std::string CertToId(net::X509Certificate* cert);
541 net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args); local
556 net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args); local
576 net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args); local
610 net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args); local
983 net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args); local
990 net::X509Certificate* cert = cert_id_map_->CallbackArgsToCert(args); local
1075 net::X509Certificate* cert = org_cert_it->get(); local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 25 import java.security.cert.CertPath;
28 import org.apache.harmony.security.tests.support.cert.MyCertPath;

Completed in 2011 milliseconds

1 2 3 4 5 6 7 8 91011>>