/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
D | IndexedCollectionCertStore.java | 148 } else if (obj instanceof X509CRL) { in buildIndex() 149 indexCRL((X509CRL)obj); in buildIndex() 201 private void indexCRL(X509CRL crl) { in indexCRL() 205 if (oldEntry instanceof X509CRL) { in indexCRL() 209 List<X509CRL> list = new ArrayList<>(2); in indexCRL() 211 list.add((X509CRL)oldEntry); in indexCRL() 216 List<X509CRL> list = (List<X509CRL>)oldEntry; in indexCRL() 376 } else if (entry instanceof X509CRL) { in engineGetCRLs() 377 X509CRL crl = (X509CRL)entry; in engineGetCRLs() 384 List<X509CRL> list = (List<X509CRL>)entry; in engineGetCRLs() [all …]
|
D | DistributionPointFetcher.java | 69 public static Collection<X509CRL> getCRLs(X509CRLSelector selector, in getCRLs() 87 public static Collection<X509CRL> getCRLs(X509CRLSelector selector, in getCRLs() 118 Set<X509CRL> results = new HashSet<>(); in getCRLs() 122 Collection<X509CRL> crls = getCRLs(selector, certImpl, in getCRLs() 145 private static Collection<X509CRL> getCRLs(X509CRLSelector selector, in getCRLs() 178 Collection<X509CRL> possibleCRLs = new ArrayList<>(); in getCRLs() 190 X509CRL crl = getCRL(uriName); in getCRLs() 204 Collection<X509CRL> crls = new ArrayList<>(2); in getCRLs() 205 for (X509CRL crl : possibleCRLs) { in getCRLs() 229 private static X509CRL getCRL(URIName name) throws CertStoreException { in getCRL() [all …]
|
D | URICertStore.java | 47 import java.security.cert.X509CRL; 107 private X509CRL crl; 356 public synchronized Collection<X509CRL> engineGetCRLs(CRLSelector selector) in engineGetCRLs() 372 return (Collection<X509CRL>) ldapCertStore.getCRLs(xsel); in engineGetCRLs() 419 crl = (X509CRL) factory.generateCRL(in); in engineGetCRLs() 439 private static Collection<X509CRL> getMatchingCRLs in getMatchingCRLs() 440 (X509CRL crl, CRLSelector selector) { in getMatchingCRLs()
|
D | 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, 824 Set<X509CRL> results = new HashSet<>(); 826 for (X509CRL crl : crls) {
|
D | AlgorithmChecker.java | 42 import java.security.cert.X509CRL; 332 static void check(PublicKey key, X509CRL crl) in check()
|
/libcore/luni/src/test/java/libcore/java/security/cert/ |
D | X509CRLTest.java | 35 import java.security.cert.X509CRL; 93 private final X509CRL getCRL(CertificateFactory f, String name) throws Exception { in getCRL() 97 X509CRL crl = (X509CRL) f.generateCRL(is); in getCRL() 184 X509CRL crlRsa = getCRL(f, CRL_RSA); in verify() 206 X509CRL crlRsa = getCRL(f, CRL_RSA); in isRevoked() 207 X509CRL crlRsaDsa = getCRL(f, CRL_RSA_DSA); in isRevoked() 229 X509CRL crl = getCRL(f, CRL_RSA); in getThisUpdateNextUpdate() 243 X509CRL crl = getCRL(f, CRL_RSA_DSA); in getThisUpdateNextUpdate() 258 X509CRL crlRsa = getCRL(f, CRL_RSA); in getSigAlgName() 263 X509CRL crlRsa = getCRL(f, CRL_RSA); in getSigAlgOID() [all …]
|
/libcore/ojluni/src/main/java/java/security/cert/ |
D | X509CRL.java | 117 public abstract class X509CRL extends CRL implements X509Extension { class 124 protected X509CRL() { in X509CRL() method in X509CRL 144 if (!(other instanceof X509CRL)) { in equals() 149 byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other); in equals()
|
D | X509CRLSelector.java | 597 if (!(crl instanceof X509CRL)) { in match() 600 X509CRL xcrl = (X509CRL)crl; in match()
|
/libcore/luni/src/test/java/tests/security/cert/ |
D | X509CRLTest.java | 40 import java.security.cert.X509CRL; 55 private X509CRL tbt_crl; 79 private class TBTCRL extends X509CRL { 328 assertTrue(crl instanceof X509CRL); in testX509CRL()
|
D | X509CRL2Test.java | 28 import java.security.cert.X509CRL; 113 assertTrue(crl instanceof X509CRL); in test_X509CRL() 119 class MyX509CRL extends X509CRL implements X509Extension {
|
D | X509CRLSelector2Test.java | 22 import java.security.cert.X509CRL; 450 .match((X509CRL) null)); in testMatchLjava_security_cert_X509CRL() 505 private class TestCRL extends X509CRL {
|
/libcore/ojluni/src/main/java/sun/security/pkcs/ |
D | PKCS7.java | 38 import java.security.cert.X509CRL; 71 private X509CRL[] crls = null; 189 X509CRL[] crls, in PKCS7() 338 crls = new X509CRL[len]; in parseSignedData() 348 crls[i] = (X509CRL) certfac.generateCRL(bais); in parseSignedData() 517 for (X509CRL crl: crls) { in encodeSignedData() 662 public X509CRL[] getCRLs() { in getCRLs()
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ldap/ |
D | LDAPCertStore.java | 715 private Collection<X509CRL> getCRLs(LDAPRequest request, String id, in getCRLs() 731 List<X509CRL> crls = new ArrayList<>(n); in getCRLs() 737 crls.add((X509CRL)crl); in getCRLs() 773 public synchronized Collection<X509CRL> engineGetCRLs(CRLSelector selector) in engineGetCRLs() 787 HashSet<X509CRL> crls = new HashSet<>(); in engineGetCRLs() 818 Collection<X509CRL> entryCRLs = Collections.emptySet(); in engineGetCRLs()
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
D | X509CRLImpl.java | 42 import java.security.cert.X509CRL; 92 public class X509CRLImpl extends X509CRL implements DerEncoder { 1130 public static X500Principal getIssuerX500Principal(X509CRL crl) { in getIssuerX500Principal() 1159 public static byte[] getEncodedInternal(X509CRL crl) throws CRLException { in getEncodedInternal() 1172 public static X509CRLImpl toImpl(X509CRL crl) in toImpl()
|
/libcore/ojluni/src/main/java/sun/security/provider/ |
D | X509Factory.java | 172 public static synchronized X509CRLImpl intern(X509CRL c) in intern() 452 X509CRL[] crls = pkcs7.getCRLs(); in parseX509orPKCS7CRL()
|
/libcore/ |
D | openjdk_java_files.mk | 469 ojluni/src/main/java/java/security/cert/X509CRL.java \
|