HomeSort by relevance Sort by last modified time
    Searched full:crlissuer (Results 1 - 11 of 11) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
DistributionPoint.java 18 * cRLIssuer [2] GeneralNames OPTIONAL
27 GeneralNames cRLIssuer;
67 cRLIssuer = GeneralNames.getInstance(t, false);
75 GeneralNames cRLIssuer)
79 this.cRLIssuer = cRLIssuer;
94 return cRLIssuer;
114 if (cRLIssuer != null)
116 v.add(new DERTaggedObject(false, 2, cRLIssuer));
136 if (cRLIssuer != null
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
DistributionPoint.java 46 * cRLIssuer [2] GeneralNames OPTIONAL
70 private final GeneralNames cRLIssuer;
73 ReasonFlags reasons, GeneralNames cRLIssuer) {
74 if ((reasons != null) && (distributionPoint == null) && (cRLIssuer == null)) {
79 this.cRLIssuer = cRLIssuer;
91 if (cRLIssuer != null) {
94 cRLIssuer.dumpValue(sb, prefix + " ");
126 values[2] = dp.cRLIssuer;
CRLDistributionPoints.java 46 * cRLIssuer [2] GeneralNames OPTIONAL
DistributionPointName.java 48 * cRLIssuer [2] GeneralNames OPTIONAL
  /external/openssl/crypto/x509v3/
v3_crld.c 293 else if (!strcmp(cnf->name, "CRLissuer"))
295 point->CRLissuer =
297 if (!point->CRLissuer)
407 ASN1_IMP_SEQUENCE_OF_OPT(DIST_POINT, CRLissuer, GENERAL_NAME, 2)
578 if(point->CRLissuer)
581 print_gens(out, point->CRLissuer, indent);
v3_purp.c 333 for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++)
335 GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
x509v3.h 251 GENERAL_NAMES *CRLissuer;
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
RFC3280CertPathUtilities.java 73 * names in the IDP matches one of the names in the cRLIssuer field of the
206 "No match for certificate CRL issuing distribution point name to cRLIssuer CRL distribution point.");
210 // the IDP matches one of the names in the cRLIssuer field of
216 throw new AnnotatedException("Either the cRLIssuer or the distributionPoint field must "
231 "No match for certificate CRL issuing distribution point name to cRLIssuer CRL distribution point.");
270 * If the DP includes cRLIssuer, then verify that the issuer field in the
271 * complete CRL matches cRLIssuer in the DP and that the complete CRL
323 throw new AnnotatedException("Distribution point contains cRLIssuer field but CRL is not indirect.");
    [all...]
CertPathValidatorUtilities.java 847 * Add the CRL issuers from the cRLIssuer field of the distribution point or
    [all...]
  /external/openssl/crypto/x509/
x509_vfy.c 1237 /* If no CRLissuer return is successful iff don't need a match */
1238 if (!dp->CRLissuer)
1240 for (i = 0; i < sk_GENERAL_NAME_num(dp->CRLissuer); i++)
1242 GENERAL_NAME *gen = sk_GENERAL_NAME_value(dp->CRLissuer, i);
    [all...]
  /external/openssl/include/openssl/
x509v3.h 251 GENERAL_NAMES *CRLissuer;

Completed in 1096 milliseconds