HomeSort by relevance Sort by last modified time
    Searched defs:trust (Results 1 - 18 of 18) sorted by null

  /external/chromium/net/base/
test_root_certs_nss.cc 17 // for a certificate whose trust status has been changed by the
22 // and copying |trust|.
23 TrustEntry(CERTCertificate* certificate, CERTCertTrust trust);
27 CERTCertTrust trust() const { return trust_; } function in class:net::TestRootCerts::TrustEntry
33 // The original trust settings, before |certificate_| was manipulated to
41 CERTCertTrust trust)
43 trust_(trust) {
51 // Preserve the original trust bits so that they can be restored when
58 // particular trust settings associated with it, and attempts to use
59 // |original_trust| later to restore the original trust settings will no
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathValidatorSpi.java 114 TrustAnchor trust; local
117 trust = CertPathValidatorUtilities.findTrustAnchor((X509Certificate) certs.get(certs.size() - 1),
125 if (trust == null)
127 throw new CertPathValidatorException("Trust anchor for certification path not found.", null, certPath, -1);
213 X509Certificate sign = trust.getTrustedCert();
223 workingIssuerName = new X500Principal(trust.getCAName());
224 workingPublicKey = trust.getCAPublicKey();
229 throw new ExtCertPathValidatorException("Subject of trust anchor could not be (re)encoded.", ex, certPath,
241 "Algorithm identifier of public key of trust anchor could not be read.", e, certPath, -1);
456 return new PKIXCertPathValidatorResult(trust, intersection, cert.getPublicKey())
    [all...]
CertPathValidatorUtilities.java 161 TrustAnchor trust = null; local
174 throw new AnnotatedException("Cannot set subject search criteria for trust anchor.", ex);
178 while (iter.hasNext() && trust == null)
180 trust = (TrustAnchor)iter.next();
181 if (trust.getTrustedCert() != null)
183 if (certSelectX509.match(trust.getTrustedCert()))
185 trustPublicKey = trust.getTrustedCert().getPublicKey();
189 trust = null;
192 else if (trust.getCAName() != null
193 && trust.getCAPublicKey() != null
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustManagerImpl.java 193 * The return value is a list of the certificates used for making the trust decision.
217 // get the cleaned up chain and trust anchor
221 // add the first trust anchor to the chain, which may be an intermediate
225 for (TrustAnchor trust : trustAnchor) {
226 wholeChain.add(trust.getTrustedCert());
241 // at this point we have a cached trust anchor, but don't know if its one we got from
254 // build the cert path from the array of certs sans trust anchors
277 "Trust anchor for certification path not found.", null, certPath, -1));
352 // 2. Find the trust anchor in the chain, if any
370 // 4. If we didn't find a trust anchor earlier, look for one no
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
x509v3.c 1578 struct x509_certificate *cert, *trust; local
    [all...]
  /frameworks/base/core/java/android/text/
BoringLayout.java 94 boolean trust;
103 trust = true;
111 trust = false;
115 metrics, includepad, trust); local
147 boolean trust;
153 trust = true;
162 trust = false;
166 metrics, includepad, trust); local
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl1Test.java 375 KeyStoreTestSupport.MCertificate trust = new KeyStoreTestSupport.MCertificate( local
378 trust);
435 .getCertificate(aliases[j]), trust);
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
certificate_manager_handler.cc 332 // Edit CA Trust & Import CA overlay strings.
467 int trust = certificate_manager_model_->cert_db().GetCertTrust( local
469 FundamentalValue ssl_value(bool(trust & net::CertDatabase::TRUSTED_SSL));
470 FundamentalValue email_value(bool(trust & net::CertDatabase::TRUSTED_EMAIL));
472 bool(trust & net::CertDatabase::TRUSTED_OBJ_SIGN));
    [all...]
  /external/wpa_supplicant_8/src/tls/
x509v3.c 1835 struct x509_certificate *cert, *trust; local
    [all...]
  /external/openssl/crypto/x509/
x509_vfy.h 173 int trust; /* trust setting to check */ member in struct:X509_VERIFY_PARAM_st
419 int X509_STORE_set_trust(X509_STORE *ctx, int trust);
492 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust);
494 int purpose, int trust);
522 int X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM *param, int trust);
x509.h 272 STACK_OF(ASN1_OBJECT) *trust; /* trusted uses */ member in struct:x509_cert_aux_st
314 /* This is used for a table of trust checking functions */
317 int trust; member in struct:x509_trust_st
332 /* standard trust ids */
855 int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int);
856 int X509_TRUST_set(int *t, int trust);
    [all...]
  /external/openssl/include/openssl/
x509_vfy.h 173 int trust; /* trust setting to check */ member in struct:X509_VERIFY_PARAM_st
419 int X509_STORE_set_trust(X509_STORE *ctx, int trust);
492 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust);
494 int purpose, int trust);
522 int X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM *param, int trust);
x509.h 272 STACK_OF(ASN1_OBJECT) *trust; /* trusted uses */ member in struct:x509_cert_aux_st
314 /* This is used for a table of trust checking functions */
317 int trust; member in struct:x509_trust_st
332 /* standard trust ids */
855 int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int);
856 int X509_TRUST_set(int *t, int trust);
    [all...]
x509v3.h 460 int trust; /* Default trust ID */ member in struct:x509_purpose_st
687 int X509_PURPOSE_add(int id, int trust, int flags,
  /external/openssl/crypto/x509v3/
x509v3.h 460 int trust; /* Default trust ID */ member in struct:x509_purpose_st
687 int X509_PURPOSE_add(int id, int trust, int flags,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 445 milliseconds