Home
last modified time | relevance | path

Searched refs:X509CRLImpl (Results 1 – 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/provider/
DX509Factory.java30 import sun.security.x509.X509CRLImpl;
65 private static final Cache<Object, X509CRLImpl> crlCache
187 public static synchronized X509CRLImpl intern(X509CRL c) in intern()
192 boolean isImpl = c instanceof X509CRLImpl; in intern()
195 encoding = ((X509CRLImpl)c).getEncodedInternal(); in intern()
199 X509CRLImpl newC = getFromCache(crlCache, encoding); in intern()
204 newC = (X509CRLImpl)c; in intern()
206 newC = new X509CRLImpl(encoding); in intern()
/libcore/ojluni/src/main/java/java/security/cert/
DX509CRL.java42 import sun.security.x509.X509CRLImpl;
143 byte[] thisCRL = X509CRLImpl.getEncodedInternal(this); in equals()
144 byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other); in equals()
161 byte[] crlData = X509CRLImpl.getEncodedInternal(this); in hashCode()
326 issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this); in getIssuerX500Principal()
/libcore/ojluni/annotations/hiddenapi/sun/security/x509/
DX509CRLImpl.java29 public class X509CRLImpl extends java.security.cert.X509CRL class
32 private X509CRLImpl() { in X509CRLImpl() method in X509CRLImpl
37 public X509CRLImpl(byte[] crlData) throws java.security.cert.CRLException { in X509CRLImpl() method in X509CRLImpl
42 public X509CRLImpl(sun.security.util.DerValue val) throws java.security.cert.CRLException { in X509CRLImpl() method in X509CRLImpl
47 public X509CRLImpl(java.io.InputStream inStrm) throws java.security.cert.CRLException { in X509CRLImpl() method in X509CRLImpl
51 public X509CRLImpl( in X509CRLImpl() method in X509CRLImpl
56 public X509CRLImpl( in X509CRLImpl() method in X509CRLImpl
65 public X509CRLImpl( in X509CRLImpl() method in X509CRLImpl
260 public static sun.security.x509.X509CRLImpl toImpl(java.security.cert.X509CRL crl) in toImpl()
295 sun.security.x509.X509CRLImpl.X509IssuerSerial, java.security.cert.X509CRLEntry>
[all …]
/libcore/ojluni/src/main/java/sun/security/x509/
DX509CRLImpl.java92 public class X509CRLImpl extends X509CRL implements DerEncoder { class
132 private X509CRLImpl() { } in X509CRLImpl() method in X509CRLImpl
144 public X509CRLImpl(byte[] crlData) throws CRLException { in X509CRLImpl() method in X509CRLImpl
159 public X509CRLImpl(DerValue val) throws CRLException { in X509CRLImpl() method in X509CRLImpl
175 public X509CRLImpl(InputStream inStrm) throws CRLException { in X509CRLImpl() method in X509CRLImpl
191 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate) { in X509CRLImpl() method in X509CRLImpl
207 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate, in X509CRLImpl() method in X509CRLImpl
247 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate, in X509CRLImpl() method in X509CRLImpl
1218 if (crl instanceof X509CRLImpl) { in getEncodedInternal()
1219 return ((X509CRLImpl)crl).getEncodedInternal(); in getEncodedInternal()
[all …]
/libcore/ojluni/annotations/hiddenapi/sun/security/provider/
DX509Factory.java42 public static synchronized sun.security.x509.X509CRLImpl intern(java.security.cert.X509CRL c) in intern()
70 private static final sun.security.util.Cache<java.lang.Object, sun.security.x509.X509CRLImpl>
/libcore/ojluni/src/main/java/sun/security/pkcs/
DPKCS7.java52 import sun.security.x509.X509CRLImpl;
386 crls[i] = new X509CRLImpl(crlVals[i]); in parseSignedData()
559 Set<X509CRLImpl> implCRLs = new HashSet<X509CRLImpl>(crls.length); in encodeSignedData()
561 if (crl instanceof X509CRLImpl) in encodeSignedData()
562 implCRLs.add((X509CRLImpl) crl); in encodeSignedData()
566 implCRLs.add(new X509CRLImpl(encoded)); in encodeSignedData()
576 implCRLs.toArray(new X509CRLImpl[implCRLs.size()])); in encodeSignedData()
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DAlgorithmChecker.java58 import sun.security.x509.X509CRLImpl;
394 X509CRLImpl x509CRLImpl = null; in check()
396 x509CRLImpl = X509CRLImpl.toImpl(crl); in check()
DDistributionPointFetcher.java331 X509CRLImpl crlImpl = X509CRLImpl.toImpl(crl); in verifyCRL()
732 private static boolean issues(X509CertImpl cert, X509CRLImpl crl, in issues()
/libcore/luni/src/test/java/libcore/java/security/cert/
DX509CRLTest.java26 import sun.security.x509.X509CRLImpl;
171 X509CRLImpl interned = X509Factory.intern(crlRsa); in test_X509CRLImpl_verify()
/libcore/
Dopenjdk_java_files.bp1901 "ojluni/src/main/java/sun/security/x509/X509CRLImpl.java",
DEXPECTED_UPSTREAM1797 …/src/main/java/sun/security/x509/X509CRLImpl.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/sun/sec…