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

1 2 3 4 5 6 7 8 910

  /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 62 * trust management algorithm.
65 * the name of the requested trust management algorithm.
66 * @return a trust manager factory for the requested algorithm.
87 * trust management algorithm from the specified provider.
90 * the name of the requested trust management algorithm name.
94 * @return a trust manager factory for the requested algorithm.
118 * trust management algorithm from the specified provider.
194 * of certificate authorities and trust material.
207 * parameters for a source of trust material.
220 * of trust material
    [all...]
TrustManagerFactorySpi.java 39 * of certificate authorities and trust material.
50 * parameters for a source of trust material.
62 * of trust material.
  /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...]
x509_vpm.c 76 param->trust = 0;
173 x509_verify_param_copy(trust, 0);
244 int X509_VERIFY_PARAM_set_trust(X509_VERIFY_PARAM *param, int trust)
246 return X509_TRUST_set(&param->trust, trust);
327 0, /* trust */
337 X509_TRUST_EMAIL, /* trust */
347 X509_TRUST_EMAIL, /* trust */
357 X509_TRUST_SSL_CLIENT, /* trust */
367 X509_TRUST_SSL_SERVER, /* trust */
    [all...]
x509_vfy.c 269 * so we get any trust settings.
354 /* The chain extensions are OK: check trust */
356 if (param->trust > 0) ok = check_trust(ctx);
624 * chain including trust anchor. Trust anchor not strictly
660 ok = X509_check_trust(x, ctx->param->trust, 0);
1147 * end in the same trust anchor, though some discussions remain...
    [all...]
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);
  /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: ");
PKIXCertPathBuilderResult.java 34 * specified validated certification path, the trust anchor of the
40 * the trust anchor.
TrustAnchor.java 29 * This class represents a trust anchor for validation of X.509 certification
191 * @return the certificate of this CA or {@code null}, if the trust anchor
202 * trust anchor of this instance was not created with a {@code
214 * 2253 format or {@code null} if the trust anchor of this instance
225 * the trust anchor if this instance was not created with a public
  /frameworks/base/cmds/system_server/
system_main.cpp 51 // You can trust me, honestly!
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustManagerImpl.java 58 * Creates trust manager implementation
84 * Indexes trust anchors so they can be found in O(1) instead of O(N) time.
109 // but have the peer certificate in our trust store.
167 // but have the peer certificate in our trust store.
177 * that we have in our trust store.
181 * @return True if the certificate is in our trust store, false otherwise.
  /external/openssl/crypto/asn1/
x_x509a.c 75 ASN1_SEQUENCE_OF_OPT(X509_CERT_AUX, trust, ASN1_OBJECT),
143 if(!aux->trust
144 && !(aux->trust = sk_ASN1_OBJECT_new_null())) return 0;
145 return sk_ASN1_OBJECT_push(aux->trust, objtmp);
161 if(x->aux && x->aux->trust) {
162 sk_ASN1_OBJECT_pop_free(x->aux->trust, ASN1_OBJECT_free);
163 x->aux->trust = NULL;
t_x509a.c 73 if(aux->trust) {
77 for(i = 0; i < sk_ASN1_OBJECT_num(aux->trust); i++) {
81 sk_ASN1_OBJECT_value(aux->trust, i), 0);
  /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/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 155 * @param params used to find the trust anchors and signature provider
171 // If we have a trust anchor index, use it.
181 TrustAnchor trust = null; local
194 throw new AnnotatedException("Cannot set subject search criteria for trust anchor.", ex);
208 while (iter.hasNext() && trust == null)
210 trust = (TrustAnchor) iter.next();
212 X509Certificate trustCert = trust.getTrustedCert();
215 // If the trust anchor is identical to the certificate we're
221 return trust;
236 trust = null
    [all...]
PKIXCertPathValidatorSpi.java 189 TrustAnchor trust; local
196 trust = CertPathValidatorUtilities.findTrustAnchor(lastCert,
205 if (trust == null)
207 throw new CertPathValidatorException("Trust anchor for certification path not found.", null, certPath, -1);
293 X509Certificate sign = trust.getTrustedCert();
316 workingIssuerName = new X500Principal(trust.getCAName());
317 workingPublicKey = trust.getCAPublicKey();
322 throw new ExtCertPathValidatorException("Subject of trust anchor could not be (re)encoded.", ex, certPath,
334 "Algorithm identifier of public key of trust anchor could not be read.", e, certPath, -1);
560 return new PKIXCertPathValidatorResult(trust, intersection, cert.getPublicKey())
    [all...]
  /external/openssl/crypto/rc2/
version 17 far I trust it. It is about the same speed as IDEA and DES.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/nfsd/
export.h 34 #define NFSEXP_NOAUTHNLM 0x0800 /* Don't authenticate NLM requests - just trust */
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
CertPathReviewerMessages.properties 136 CertPathReviewer.rootKeyIsValidButNotATrustAnchor.title = Root key with valid signature but no trust anchor
137 CertPathReviewer.rootKeyIsValidButNotATrustAnchor.text = The certificate has a valid signature, but is no trust anchor
138 CertPathReviewer.rootKeyIsValidButNotATrustAnchor.summary = The certificate has a valid signature, but is no trust anchor
139 CertPathReviewer.rootKeyIsValidButNotATrustAnchor.details = The certificate has a valid signature, but is no trust anchor
142 CertPathReviewer.trustButInvalidCert.title = Trust anchor found, but different public key
143 CertPathReviewer.trustButInvalidCert.text = A trust anchor was found. But it has a different public key, than was used to issue the first certificate of the cert path.
144 CertPathReviewer.trustButInvalidCert.summary = A trust anchor was found. But it has a different public key, than was used to issue the first certificate of the cert path.
145 CertPathReviewer.trustButInvalidCert.details = A trust anchor was found. But it has a different public key, than was used to issue the first certificate of the cert path.
148 CertPathReviewer.trustAnchorIssuerError.title = Finding trust anchor failed
149 CertPathReviewer.trustAnchorIssuerError.text = Finding trust anchor failed: cannot extract issuer from certificate
    [all...]
  /libcore/luni/src/main/files/cacerts/
a15b3b6b.0 6 Issuer: C=US, O=Digital Signature Trust Co., OU=DSTCA E2
10 Subject: C=US, O=Digital Signature Trust Co., OU=DSTCA E2
29 DirName:/C=US/O=Digital Signature Trust Co./OU=DSTCA E2/CN=CRL1
c215bc69.0 6 Issuer: C=US, O=Digital Signature Trust Co., OU=DSTCA E1
10 Subject: C=US, O=Digital Signature Trust Co., OU=DSTCA E1
29 DirName:/C=US/O=Digital Signature Trust Co./OU=DSTCA E1/CN=CRL1
  /external/chromium/net/socket/
ssl_test_util.cc 66 CERTCertTrust trust; local
67 int rv = CERT_DecodeTrustString(&trust, const_cast<char *>("TCu,Cu,Tu"));
69 LOG(ERROR) << "Can't decode trust string";
74 rv = CERT_ChangeCertTrust(CERT_GetDefaultCertDB(), cert, &trust);
76 LOG(ERROR) << "Can't change trust for certificate " << filename.value();
  /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);
  /packages/apps/Email/tests/src/com/android/email/activity/setup/
AccountSetupExchangeTests.java 139 // The default URI has no SSL and no "trust"
146 // "trust certificates" checkbox (not checked, but visible now).
159 // "trust certificates" checkbox (not checked, but visible now).

Completed in 660 milliseconds

1 2 3 4 5 6 7 8 910