HomeSort by relevance Sort by last modified time
    Searched full:trust (Results 1 - 25 of 880) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
cert_type.h 14 // Certificate Authority Basic Constraint, and assigned trust values. For
15 // example, a cert with no basic constraints or trust would be classified as
cert_database_nss_unittest.cc 210 psm::nsNSSCertTrust trust(cert->os_cert_handle()->trust);
211 EXPECT_TRUE(trust.HasTrustedCA(PR_TRUE, PR_FALSE, PR_FALSE));
212 EXPECT_FALSE(trust.HasTrustedCA(PR_FALSE, PR_TRUE, PR_FALSE));
213 EXPECT_FALSE(trust.HasTrustedCA(PR_FALSE, PR_FALSE, PR_TRUE));
214 EXPECT_FALSE(trust.HasTrustedCA(PR_TRUE, PR_TRUE, PR_TRUE));
215 EXPECT_TRUE(trust.HasCA(PR_TRUE, PR_TRUE, PR_TRUE));
242 psm::nsNSSCertTrust trust(cert->os_cert_handle()->trust);
243 EXPECT_FALSE(trust.HasTrustedCA(PR_TRUE, PR_FALSE, PR_FALSE))
    [all...]
  /external/chromium_org/net/cert/
test_root_certs_nss.cc 21 // for a certificate whose trust status has been changed by the
26 // and copying |trust|.
27 TrustEntry(CERTCertificate* certificate, const CERTCertTrust& trust);
31 const CERTCertTrust& trust() const { return trust_; } function in class:net::TestRootCerts::TrustEntry
37 // The original trust settings, before |certificate_| was manipulated to
45 const CERTCertTrust& trust)
47 trust_(trust) {
61 // Preserve the original trust bits so that they can be restored when
67 // particular trust settings associated with it, and attempts to use
68 // |original_trust| later to restore the original trust settings will no
    [all...]
cert_trust_anchor_provider.h 18 // Interface to retrieve the current list of additional trust anchors.
19 // This is used by CertVerifier to get a list of anchors to trust in addition to
25 // Returns a list of certificates to be used as trust anchors during
27 // or pre-configured trust anchors.
cert_type.h 14 // Certificate Authority Basic Constraint, and assigned trust values. For
15 // example, a cert with no basic constraints or trust would be classified as
nss_cert_database.cc 185 CERTCertTrust trust; local
186 SECStatus srv = CERT_GetCertTrust(cert->os_cert_handle(), &trust);
192 // round-trip all possible NSS trust flag combinations. We try to map them in
200 if ((trust.sslFlags & kCAFlags) == CERTDB_TERMINAL_RECORD)
202 else if (trust.sslFlags & kTrustedCA)
205 if ((trust.emailFlags & kCAFlags) == CERTDB_TERMINAL_RECORD)
207 else if (trust.emailFlags & kTrustedCA)
210 if ((trust.objectSigningFlags & kCAFlags) == CERTDB_TERMINAL_RECORD)
212 else if (trust.objectSigningFlags & kTrustedCA)
218 if (trust.sslFlags & CERTDB_TERMINAL_RECORD)
    [all...]
nss_cert_database_unittest.cc 112 // Reset cert trust values to defaults before deleting. Otherwise NSS
113 // somehow seems to remember the trust which can break following tests.
292 cert->os_cert_handle()->trust->sslFlags);
294 cert->os_cert_handle()->trust->emailFlags);
296 cert->os_cert_handle()->trust->objectSigningFlags);
322 cert->os_cert_handle()->trust->sslFlags);
325 cert->os_cert_handle()->trust->emailFlags);
327 cert->os_cert_handle()->trust->objectSigningFlags);
353 cert->os_cert_handle()->trust->sslFlags);
355 cert->os_cert_handle()->trust->emailFlags)
    [all...]
test_root_certs_unittest.cc 65 // Test that TestRootCerts actually adds the appropriate trust status flags
68 // the results of the rest of net_unittests, ensuring that the trust status
107 // TestRootCerts is successfully imbuing trust.
121 // Ensure that when the TestRootCerts is cleared, the trust settings
122 // revert to their original state, and don't linger. If trust status
  /libcore/luni/src/main/java/javax/net/ssl/
TrustManager.java 21 * The marker interface for JSSE trust managers. The purpose is to group trust
22 * managers. The responsibility a trust manager is to handle the trust data used to
23 * make trust decisions for deciding whether credentials of a peer should be
TrustManagerFactory.java 60 * trust management algorithm.
63 * the name of the requested trust management algorithm.
64 * @return a trust manager factory for the requested algorithm.
82 * trust management algorithm from the specified provider.
85 * the name of the requested trust management algorithm name.
89 * @return a trust manager factory for the requested algorithm.
113 * trust management algorithm from the specified provider.
187 * of certificate authorities and trust material.
200 * parameters for a source of trust material.
214 * of trust material
    [all...]
TrustManagerFactorySpi.java 38 * of certificate authorities and trust material.
49 * parameters for a source of trust material.
61 * of trust material.
  /external/chromium_org/third_party/openssl/openssl/crypto/x509/
x509_trs.c 68 static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags);
69 static int trust_1oid(X509_TRUST *trust, X509 *x, int flags);
70 static int trust_compat(X509_TRUST *trust, X509 *x, int flags);
75 /* WARNING: the following table should be kept in order of trust
76 * and without any gaps so we can just subtract the minimum trust
100 return (*a)->trust - (*b)->trust;
103 int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int)
107 default_trust = trust;
142 tmp.trust = id
    [all...]
  /external/openssl/crypto/x509/
x509_trs.c 68 static int trust_1oidany(X509_TRUST *trust, X509 *x, int flags);
69 static int trust_1oid(X509_TRUST *trust, X509 *x, int flags);
70 static int trust_compat(X509_TRUST *trust, X509 *x, int flags);
75 /* WARNING: the following table should be kept in order of trust
76 * and without any gaps so we can just subtract the minimum trust
100 return (*a)->trust - (*b)->trust;
103 int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int)
107 default_trust = trust;
142 tmp.trust = id
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
PKIXCertPathValidatorResult.java 29 // A trust anchor used during validation of certification path
39 * trust anchor, the valid policy tree and the subject public key.
42 * the trust anchor describing the certification authority (CA)
43 * that served as trust anchor for the certification path.
81 * Returns the trust anchor describing the certification authority (CA) that
82 * served as trust anchor for this certification path.
84 * @return the trust anchor.
112 sb.append(": [\n Trust Anchor: ");
  /external/ceres-solver/internal/ceres/
trust_region_strategy.h 44 // Interface for classes implementing various trust region strategies
47 // The object is expected to maintain and update a trust region
48 // radius, which it then uses to solve for the trust region step using
51 // Here the term trust region radius is used loosely, as the strategy
53 // the LevenbergMarquardtStrategy uses the inverse of the trust region
69 // Linear solver used for actually solving the trust region step.
96 // If non-empty and dump_format_type is not CONSOLE, the trust
112 // If the trust region problem is,
132 // Use the current radius to solve for the trust region step.
140 // decrease in the trust region model is step_quality
    [all...]
  /external/chromium_org/net/android/java/src/org/chromium/net/
X509Util.java 43 * Trust manager backed up by the read-only system certificate store.
48 * Trust manager backed up by a custom certificate store. We need such manager to plant test
49 * root CA to the trust store in testing.
55 * Lock object used to synchronize all calls that modify or depend on the trust managers.
60 * Ensures that the trust managers and certificate factory are initialized.
85 * store, system default trust store is used.
103 * After each modification of test key store, trust manager has to be generated again.
199 // Expired and not yet valid certificates would be rejected by the trust managers, but the
200 // trust managers report all certificate errors using the general CertificateException. In
224 // Neither of the trust managers confirms the validity of the certificate chain
    [all...]
  /external/chromium_org/net/third_party/mozilla_security_manager/
nsNSSCertificateDB.cpp 87 // TODO(mattm): should we set/add trust if it differs from the present
236 LOG(ERROR) << "SetCertTrust called with conflicting trust bits "
245 // Note that we start with CERTDB_VALID_CA for default trust and explicit
246 // trust, but explicitly distrusted usages will be set to
248 CERTCertTrust trust = {CERTDB_VALID_CA, CERTDB_VALID_CA, CERTDB_VALID_CA}; local
251 trust.sslFlags = CERTDB_TERMINAL_RECORD;
253 trust.sslFlags |= CERTDB_TRUSTED_CA | CERTDB_TRUSTED_CLIENT_CA;
256 trust.emailFlags = CERTDB_TERMINAL_RECORD;
258 trust.emailFlags |= CERTDB_TRUSTED_CA | CERTDB_TRUSTED_CLIENT_CA;
261 trust.objectSigningFlags = CERTDB_TERMINAL_RECORD
267 CERTCertTrust trust = {0}; local
    [all...]
  /external/chromium/chrome/browser/resources/options/
certificate_edit_ca_trust_overlay.js 10 * Encapsulated handling of the 'edit ca trust' and 'import ca' overlay pages.
96 * Callback from CertificateManagerHandler with the trust values.
97 * @param {boolean} trustSSL The initial value of SSL trust checkbox.
98 * @param {boolean} trustEmail The initial value of Email trust checkbox.
99 * @param {boolean} trustObjSign The initial value of Object Signing trust
110 * Show the Edit CA Trust overlay.
  /external/chromium_org/chrome/browser/resources/options/
certificate_edit_ca_trust_overlay.js 10 * Encapsulated handling of the 'edit ca trust' and 'import ca' overlay pages.
96 * Callback from CertificateManagerHandler with the trust values.
97 * @param {boolean} trustSSL The initial value of SSL trust checkbox.
98 * @param {boolean} trustEmail The initial value of Email trust checkbox.
99 * @param {boolean} trustObjSign The initial value of Object Signing trust.
110 * Show the Edit CA Trust overlay.
  /development/samples/training/basic/FragmentBasics/src/com/example/fragments/
Ipsum.java 26 "Article One\n\nExcepteur pour-over occaecat squid biodiesel umami gastropub, nulla laborum salvia dreamcatcher fanny pack. Ullamco culpa retro ea, trust fund excepteur eiusmod direct trade banksy nisi lo-fi cray messenger bag. Nesciunt esse carles selvage put a bird on it gluten-free, wes anderson ut trust fund twee occupy viral. Laboris small batch scenester pork belly, leggings ut farm-to-table aliquip yr nostrud iphone viral next level. Craft beer dreamcatcher pinterest truffaut ethnic, authentic brunch. Esse single-origin coffee banksy do next level tempor. Velit synth dreamcatcher, magna shoreditch in american apparel messenger bag narwhal PBR ennui farm-to-table.",
27 "Article Two\n\nVinyl williamsburg non velit, master cleanse four loko banh mi. Enim kogi keytar trust fund pop-up portland gentrify. Non ea typewriter dolore deserunt Austin. Ad magna ethical kogi mixtape next level. Aliqua pork belly thundercats, ut pop-up tattooed dreamcatcher kogi accusamus photo booth irony portland. Semiotics brunch ut locavore irure, enim etsy laborum stumptown carles gentrify post-ironic cray. Butcher 3 wolf moon blog synth, vegan carles odd future."
  /external/chromium_org/chrome/browser/chromeos/policy/
network_configuration_updater.h 31 // trust isn't given to certificates imported from ONC by default. Setting
32 // |allow_trust_certs_from_policy| to true allows giving Web trust to the
44 // CA certificates with the Web trust flag set that were retrieved from the
58 // Whether Web trust is allowed or not.
policy_cert_verifier.h 17 // Wraps a MultiThreadedCertVerifier to make it use the additional trust anchors
24 // |trust_anchor_provider| is used to retrieve the current list of trust
  /external/smack/src/org/jivesoftware/smack/
OpenTrustManager.java 28 * Dummy trust manager that trust all certificates presented by the server. This class
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
distrib.good 25 Trust, that's purer than pearl, --
26 Brightest truth, purest trust in the universe --

Completed in 477 milliseconds

1 2 3 4 5 6 7 8 91011>>