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

1 2 3

  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509CRLHolder.java 35 private CertificateList x509CRL;
96 * @param x509CRL an ASN.1 CertificateList structure.
98 public X509CRLHolder(CertificateList x509CRL)
100 this.x509CRL = x509CRL;
101 this.extensions = x509CRL.getTBSCertList().getExtensions();
103 this.issuerName = new GeneralNames(new GeneralName(x509CRL.getIssuer()));
115 return x509CRL.getEncoded();
125 return X500Name.getInstance(x509CRL.getIssuer());
131 for (Enumeration en = x509CRL.getRevokedCertificateEnumeration(); en.hasMoreElements();
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCRLUtil.java 5 import java.security.cert.X509CRL;
42 X509CRL crl = (X509CRL)it.next();
75 * @return a Collection of all found {@link java.security.cert.X509CRL X509CRL} objects. May be
PrincipalUtils.java 4 import java.security.cert.X509CRL;
20 static X500Name getIssuerPrincipal(X509CRL crl)
RFC3280CertPathUtilities.java 13 import java.security.cert.X509CRL;
104 X509CRL crl)
288 X509CRL crl)
357 X509CRL crl,
447 X509CRL crl,
585 X509CRL crl,
606 protected static X509CRL processCRLH(
615 X509CRL crl = (X509CRL)it.next();
638 X509CRL crl
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CRLTest.java 35 import java.security.cert.X509CRL;
93 private final X509CRL getCRL(CertificateFactory f, String name) throws Exception {
97 X509CRL crl = (X509CRL) f.generateCRL(is);
184 X509CRL crlRsa = getCRL(f, CRL_RSA);
206 X509CRL crlRsa = getCRL(f, CRL_RSA);
207 X509CRL crlRsaDsa = getCRL(f, CRL_RSA_DSA);
229 X509CRL crl = getCRL(f, CRL_RSA);
243 X509CRL crl = getCRL(f, CRL_RSA_DSA);
258 X509CRL crlRsa = getCRL(f, CRL_RSA)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
IndexedCollectionCertStore.java 103 * Map X500Principal(issuer) -> X509CRL | List of X509CRL
148 } else if (obj instanceof X509CRL) {
149 indexCRL((X509CRL)obj);
199 * Add an X509CRL to the index.
201 private void indexCRL(X509CRL crl) {
205 if (oldEntry instanceof X509CRL) {
209 List<X509CRL> list = new ArrayList<>(2);
211 list.add((X509CRL)oldEntry);
216 List<X509CRL> list = (List<X509CRL>)oldEntry
    [all...]
URICertStore.java 47 import java.security.cert.X509CRL;
106 // cached X509CRL (may be null)
107 private X509CRL crl;
343 * Returns a <code>Collection</code> of <code>X509CRL</code>s that
344 * match the specified selector. If no <code>X509CRL</code>s
348 * <code>X509CRL</code>s should be returned. Specify <code>null</code>
349 * to return all <code>X509CRL</code>s.
350 * @return A <code>Collection</code> of <code>X509CRL</code>s that
356 public synchronized Collection<X509CRL> engineGetCRLs(CRLSelector selector)
372 return (Collection<X509CRL>) ldapCertStore.getCRLs(xsel)
    [all...]
DistributionPointFetcher.java 69 public static Collection<X509CRL> getCRLs(X509CRLSelector selector,
87 public static Collection<X509CRL> getCRLs(X509CRLSelector selector,
118 Set<X509CRL> results = new HashSet<>();
122 Collection<X509CRL> crls = getCRLs(selector, certImpl,
145 private static Collection<X509CRL> getCRLs(X509CRLSelector selector,
178 Collection<X509CRL> possibleCRLs = new ArrayList<>();
190 X509CRL crl = getCRL(uriName);
204 Collection<X509CRL> crls = new ArrayList<>(2);
205 for (X509CRL crl : possibleCRLs) {
229 private static X509CRL getCRL(URIName name) throws CertStoreException
    [all...]
RevocationChecker.java 488 Set<X509CRL> possibleCRLs = new HashSet<>();
489 Set<X509CRL> approvedCRLs = new HashSet<>();
499 possibleCRLs.add((X509CRL)crl);
601 Set<X509CRL> approvedCRLs)
615 for (X509CRL crl : approvedCRLs) {
794 private Collection<X509CRL> verifyPossibleCRLs(Set<X509CRL> crls,
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
CRLBag.java 67 * x509CRL BAG-TYPE ::= {OCTET STRING IDENTIFIED BY {certTypes 1}
71 * x509CRL,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
PrincipalUtil.java 6 import java.security.cert.X509CRL;
66 X509CRL crl)
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
X509CRLTest.java 33 import java.security.cert.X509CRL;
52 private X509CRL tbt_crl;
57 private class TBTCRL extends X509CRL {
157 assertEquals("The type of X509CRL should be X.509",
207 + "an instance of X509CRL", tbt_crl.equals(new Object()));
225 * @tests java.security.cert.X509CRL#getIssuerX500Principal()
X509CRL2Test.java 44 * @tests java.security.cert.X509CRL#getExtensionValue(java.lang.String)
  /libcore/luni/src/test/java/tests/security/cert/
X509CRL2Test.java 28 import java.security.cert.X509CRL;
76 * java.security.cert.X509CRL#getExtensionValue(java.lang.String)
106 * java.security.cert.X509CRL#X509CRL()
113 assertTrue(crl instanceof X509CRL);
119 class MyX509CRL extends X509CRL implements X509Extension {
X509CRLTest.java 40 import java.security.cert.X509CRL;
55 private X509CRL tbt_crl;
79 private class TBTCRL extends X509CRL {
185 assertEquals("The type of X509CRL should be X.509",
235 + "an instance of X509CRL", tbt_crl.equals(new Object()));
253 * java.security.cert.X509CRL#getIssuerX500Principal()
328 assertTrue(crl instanceof X509CRL);
  /libcore/ojluni/src/main/java/java/security/cert/
X509CRLSelector.java 48 * would return <code>true</code> for any <code>X509CRL</code>. Typically,
68 * @see X509CRL
90 * so any <code>X509CRL</code> will match.
96 * <code>X509CRL</code> must match at least one of the specified
141 * <code>X509CRL</code> must match at least one of the specified
211 * name in the <code>X509CRL</code> must match at least one of the specified
235 * name in the <code>X509CRL</code> must match at least one of the specified
252 * name in the <code>X509CRL</code> must match at least one of the specified
282 * name in the <code>X509CRL</code> must match at least one of the specified
383 * Sets the minCRLNumber criterion. The <code>X509CRL</code> must have
    [all...]
X509Extension.java 35 * {@link X509CRL CRLs} (Certificate Revocation
121 * X509CRL revoked certificate entry and print the OIDs:
125 * X509CRL crl = null;
129 * crl = (X509CRL)cf.generateCRL(inStrm);
X509CRL.java 101 * X509CRL crl = (X509CRL)cf.generateCRL(inStream);
117 public abstract class X509CRL extends CRL implements X509Extension {
124 protected X509CRL() {
131 * <code>instanceof</code> <code>X509CRL</code>, then
144 if (!(other instanceof X509CRL)) {
149 byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);
CRL.java 40 * @see X509CRL
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509CRLStoreSelector.java 6 import java.security.cert.X509CRL;
94 if (!(obj instanceof X509CRL))
98 X509CRL crl = (X509CRL)obj;
160 return super.match((X509CRL)obj);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
PKIXCRLStoreSelector.java 8 import java.security.cert.X509CRL;
182 if (!(obj instanceof X509CRL))
187 X509CRL crl = (X509CRL)obj;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificateListTest.java 29 import java.security.cert.X509CRL;
216 X509CRL crl = (X509CRL)
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory_ImplTest.java 30 import java.security.cert.X509CRL;
141 private static String x509crl = field in class:CertificateFactory_ImplTest
272 ((X509CRL) i.next()).verify(publicKey);
309 (good[i][0] + x509crl + good[i][1]).getBytes("UTF-8"));
311 X509CRL crl = (X509CRL) factory.generateCRL(bais);
333 (bad[i][0] + x509crl + bad[i][1]).getBytes("UTF-8"));
346 ((X509CRL) it.next()).verify(publicKey);
408 data[pem_x509] = (good[0][0] + x509crl + good[0][1] + "\n").getBytes("UTF-8");
409 data[asn_x509] = Base64.decode(x509crl.getBytes("UTF-8"))
    [all...]
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CertificateTest.java 273 X509CRL crl = (X509CRL) certFactory.generateCRL(is);
  /libcore/ojluni/src/main/java/sun/security/pkcs/
PKCS7.java 38 import java.security.cert.X509CRL;
71 private X509CRL[] crls = null;
189 X509CRL[] crls,
338 crls = new X509CRL[len];
348 crls[i] = (X509CRL) certfac.generateCRL(bais);
517 for (X509CRL crl: crls) {
662 public X509CRL[] getCRLs() {
    [all...]

Completed in 942 milliseconds

1 2 3