HomeSort by relevance Sort by last modified time
    Searched refs:CRL (Results 26 - 50 of 61) sorted by null

12 3

  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLX509CertificateFactory.java 22 import java.security.cert.CRL;
60 * The code for X509 Certificates and CRL is pretty much the same. We use
289 public CRL engineGenerateCRL(InputStream inStream) throws CRLException {
298 public Collection<? extends CRL> engineGenerateCRLs(InputStream inStream) throws CRLException {
  /external/jetty/src/java/org/eclipse/jetty/security/authentication/
ClientCertAuthenticator.java 24 import java.security.cert.CRL;
67 /** CRL Distribution Points (CRLDP) support */
110 Collection<? extends CRL> crls = loadCRL(_crlPath);
171 * Loads certificate revocation list (CRL) from a file.
174 * load CRL in order to provide their own implementation.
177 * @return a (possibly empty) collection view of java.security.cert.CRL objects initialized with the data from the
181 protected Collection<? extends CRL> loadCRL(String crlPath) throws Exception
317 * @return true if CRL Distribution Points support is enabled
325 /** Enables CRL Distribution Points Support
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory4Test.java 33 import java.security.cert.CRL;
49 private static final String[] CRL_URLS = new String[] { "Bug93893-1.crl",
50 "Bug93893-2.crl", "Bug94404-DER.crl" };
52 private static final String[] CRLCOLLECTION_URLS = new String[] { "Bug94404-PKCS7.crl" };
117 CRL crl = fact.generateCRL(is); local
118 assertNotNull("The CRL in \"" + certUrl.toExternalForm()
119 + "\" were not parsed correctly", crl);
138 Collection<? extends CRL> crls = fact.generateCRLs(is)
    [all...]
CertificateFactory2Test.java 35 import java.security.cert.CRL;
147 CRL crl = certFactory.generateCRL(dis); local
148 assertNull("Result must be null", crl);
149 Collection<? extends CRL> colc = certFactory.generateCRLs(dis);
X509CRLSelector2Test.java 20 import java.security.cert.CRL;
69 CRL crl1 = new TestCRL(iss1);
70 CRL crl2 = new TestCRL(iss2);
73 assertTrue("The CRL should match the selection criteria.", selector
75 assertFalse("The CRL should not match the selection criteria.",
78 assertTrue("The CRL should match the selection criteria.", selector
100 assertTrue("The CRL should match the selection criteria.", selector
102 assertFalse("The CRL should not match the selection criteria.",
110 assertTrue("The CRL should match the selection criteria.", selector
141 assertTrue("Any CRL issuers should match in the case of null issuers."
245 CRL crl = new TestCRL(minCRL); local
269 TestCRL crl = new TestCRL(maxCRL); local
289 TestCRL crl = new TestCRL(new Date(200), new Date(300)); local
322 TestCRL crl = new TestCRL(); local
481 TestCRL crl = new TestCRL(iss1); local
    [all...]
X509Certificate2Test.java 152 // Base64 encoded form of ASN.1 DER encoded X.509 CRL
156 private static String CRL =
CertificateFactory1Test.java 38 import java.security.cert.CRL;
390 assertTrue("Not empty CRL collection was returned from null stream", colCrl.isEmpty());
405 assertTrue("Not empty CRL collection was returned from empty stream", colCrl.isEmpty());
437 CRL crl; local
459 crl = certFs[i].generateCRL(is);
460 assertNull("Not null CRL was created", crl);
467 assertTrue("Not empty CRL Collection was created", colCrl.isEmpty());
  /libcore/luni/src/main/java/java/security/cert/
CertStore.java 30 * {@code CRL}s from a read-only repository. This repository may be very large
246 * Returns the list of {@code CRL}s for the specified {@code CRLSelector}
252 * @return the list of {@code CRL}s that match the criteria of the specified
257 public final Collection<? extends CRL> getCRLs(CRLSelector selector)
X509CRLSelector.java 33 * A CRL selector ({@code CRLSelector} for selecting {@code
64 * The CRL issuer must match at least one of the specified distinguished
89 * The CRL issuer must match at least one of the specified distinguished
131 * The CRL issuer must match at least one of the specified distinguished
190 * The CRL issuer must match at least one of the specified distinguished
212 * Sets the criterion for the minimum CRL number.
214 * The CRL must have a number extension with a value greater than or equal
218 * the minimum CRL number or null to not check the minimum CRL
226 * Sets the criterion for the maximum CRL number
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory4Test.java 27 import java.security.cert.CRL;
46 private static final String[] CRL_URLS = new String[] { "Bug93893-1.crl",
47 "Bug93893-2.crl", "Bug94404-DER.crl" };
49 private static final String[] CRLCOLLECTION_URLS = new String[] { "Bug94404-PKCS7.crl" };
116 CRL crl = fact.generateCRL(is); local
117 assertNotNull("The CRL in \"" + certUrl.toExternalForm()
118 + "\" were not parsed correctly", crl);
    [all...]
CertificateFactory2Test.java 29 import java.security.cert.CRL;
156 CRL crl = certFactory.generateCRL(dis); local
157 assertNull("Result must be null", crl);
CertificateFactory1Test.java 31 import java.security.cert.CRL;
403 assertTrue("Not empty CRL collection was returned from null stream", colCrl.isEmpty());
418 assertTrue("Not empty CRL collection was returned from empty stream", colCrl.isEmpty());
451 CRL crl; local
473 crl = certFs[i].generateCRL(is);
474 assertNull("Not null CRL was created", crl);
481 assertTrue("Not empty CRL Collection was created", colCrl.isEmpty());
  /external/nist-pkits/
extract-pkits-tests.pl 63 if ($part =~ /CRL[0-9]*$/) {
64 my $crlName = $part . ".crl";
  /external/jetty/src/java/org/eclipse/jetty/util/ssl/
SslContextFactory.java 31 import java.security.cert.CRL;
177 /** Set to true to enable CRL Distribution Points (CRLDP) support */
267 Collection<? extends CRL> crls = loadCRL(_crlPath);
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 26 import java.security.cert.CRL;
574 public Collection<? extends CRL> engineGetCRLs(CRLSelector selector)
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CRLTest.java 32 import java.security.cert.CRL;
57 private static final String CERT_CRL_CA = "x509/cert-crl-ca.der";
59 private static final String CRL_RSA = "x509/crl-rsa.der";
61 private static final String CRL_RSA_DSA = "x509/crl-rsa-dsa.der";
63 private static final String CRL_RSA_DSA_SIGOPT = "x509/crl-rsa-dsa-sigopt.der";
65 private static final String CRL_UNSUPPORTED = "x509/crl-unsupported.der";
67 private static final String CRL_RSA_DATES = "x509/crl-rsa-dates.txt";
69 private static final String CRL_RSA_DSA_DATES = "x509/crl-rsa-dsa-dates.txt";
71 private static final String CRL_RSA_SIG = "x509/crl-rsa-sig.der";
73 private static final String CRL_RSA_TBS = "x509/crl-rsa-tbs.der"
97 X509CRL crl = (X509CRL) f.generateCRL(is); local
229 X509CRL crl = getCRL(f, CRL_RSA); local
243 X509CRL crl = getCRL(f, CRL_RSA_DSA); local
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 649 public CRL engineGenerateCRL(InputStream inStream) throws CRLException {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 656 public CRL engineGenerateCRL(InputStream inStream) throws CRLException {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cryptxml.h 264 CRYPT_XML_DATA_BLOB CRL;
  /external/valgrind/none/tests/s390x/
opcodes.h 216 #define CRL(r1,i2) RIL_RP(c6,r1,d,i2)
  /external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/bin/util/
ssvnc.tcl 796 Use the "-crl file" option to set a default CRL File. This is the same
797 as "crl=file" in the ~/.ssvncrc file. See Certs -> Help for more info.
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 

Completed in 2033 milliseconds

12 3