Searched refs:X509CRL (Results 1 - 13 of 13) sorted by relevance

/libcore/ojluni/src/main/java/java/security/cert/
H A DX509CRL.java100 * X509CRL crl = (X509CRL)cf.generateCRL(inStream);
112 public abstract class X509CRL extends CRL implements X509Extension { class in inherits:CRL,X509Extension
119 protected X509CRL() { method in class:X509CRL
126 * {@code instanceof} {@code X509CRL}, then
139 if (!(other instanceof X509CRL)) {
144 byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);
252 "X509CRL instance doesn't not support X509CRL#verify(PublicKey, Provider)");
H A DX509CRLSelector.java48 * would return {@code true} for any {@code X509CRL}. Typically,
68 * @see X509CRL
90 * so any {@code X509CRL} will match.
96 * {@code X509CRL} must match at least one of the specified
141 * {@code X509CRL} must match at least one of the specified
211 * name in the {@code X509CRL} must match at least one of the specified
235 * name in the {@code X509CRL} must match at least one of the specified
252 * name in the {@code X509CRL} must match at least one of the specified
282 * name in the {@code X509CRL} must match at least one of the specified
383 * Sets the minCRLNumber criterion. The {@code X509CRL} mus
[all...]
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DX509CRLTest.java40 import java.security.cert.X509CRL;
117 private final X509CRL getCRL(CertificateFactory f, String name) throws Exception {
121 X509CRL crl = (X509CRL) f.generateCRL(is);
175 X509CRL crlRsa = getCRL(f, CRL_RSA);
216 X509CRL crlRsa = getCRL(f, CRL_RSA);
269 X509CRL crlRsa = getCRL(f, CRL_RSA);
270 X509CRL crlRsaDsa = getCRL(f, CRL_RSA_DSA);
292 X509CRL crl = getCRL(f, CRL_RSA);
306 X509CRL cr
[all...]
/libcore/luni/src/test/java/tests/security/cert/
H A DX509CRL2Test.java28 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 {
H A DX509CRLTest.java40 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);
H A DX509CRLSelector2Test.java22 import java.security.cert.X509CRL;
450 .match((X509CRL) null));
505 private class TestCRL extends X509CRL {
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DDistributionPointFetcher.java68 public static Collection<X509CRL> getCRLs(X509CRLSelector selector,
86 public static Collection<X509CRL> getCRLs(X509CRLSelector selector,
117 Set<X509CRL> results = new HashSet<>();
121 Collection<X509CRL> crls = getCRLs(selector, certImpl,
144 private static Collection<X509CRL> getCRLs(X509CRLSelector selector,
177 Collection<X509CRL> possibleCRLs = new ArrayList<>();
189 X509CRL crl = getCRL(uriName);
203 Collection<X509CRL> crls = new ArrayList<>(2);
204 for (X509CRL crl : possibleCRLs) {
228 private static X509CRL getCR
[all...]
H A DURICertStore.java47 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>) ldapCertStor
[all...]
H A DRevocationChecker.java494 Set<X509CRL> possibleCRLs = new HashSet<>();
495 Set<X509CRL> approvedCRLs = new HashSet<>();
505 possibleCRLs.add((X509CRL)crl);
607 Set<X509CRL> approvedCRLs)
621 for (X509CRL crl : approvedCRLs) {
800 private Collection<X509CRL> verifyPossibleCRLs(Set<X509CRL> crls,
830 Set<X509CRL> results = new HashSet<>();
832 for (X509CRL crl : crls) {
H A DAlgorithmChecker.java40 import java.security.cert.X509CRL;
391 static void check(PublicKey key, X509CRL crl)
/libcore/ojluni/src/main/java/sun/security/provider/
H A DX509Factory.java47 * @see java.security.cert.X509CRL
181 * @param c The source X509CRL
183 * newly built X509CRLImpl from the provided X509CRL
187 public static synchronized X509CRLImpl intern(X509CRL c)
513 X509CRL[] crls = pkcs7.getCRLs();
/libcore/ojluni/src/main/java/sun/security/pkcs/
H A DPKCS7.java39 import java.security.cert.X509CRL;
73 private X509CRL[] crls = null;
223 X509CRL[] crls,
378 crls = new X509CRL[len];
388 crls[i] = (X509CRL) certfac.generateCRL(bais);
558 for (X509CRL crl: crls) {
704 public X509CRL[] getCRLs() {
/libcore/ojluni/src/main/java/sun/security/x509/
H A DX509CRLImpl.java42 import java.security.cert.X509CRL;
90 * @see X509CRL
92 public class X509CRLImpl extends X509CRL implements DerEncoder {
447 * verify(PublicKey key, Provider sigProvider) method in X509CRL.
448 * Called from java.security.cert.X509CRL.verify(PublicKey key,
455 public static void verify(X509CRL crl, PublicKey key,
664 * Return the issuer as X500Principal. Overrides method in X509CRL
1183 * Extract the issuer X500Principal from an X509CRL. Parses the encoded
1186 * Called by java.security.cert.X509CRL.getIssuerX500Principal().
1188 public static X500Principal getIssuerX500Principal(X509CRL cr
[all...]

Completed in 171 milliseconds