HomeSort by relevance Sort by last modified time
    Searched refs:X509CRLImpl (Results 1 - 7 of 7) sorted by null

  /libcore/ojluni/src/main/java/java/security/cert/
X509CRL.java 41 import sun.security.x509.X509CRLImpl;
148 byte[] thisCRL = X509CRLImpl.getEncodedInternal(this);
149 byte[] otherCRL = X509CRLImpl.getEncodedInternal((X509CRL)other);
166 byte[] crlData = X509CRLImpl.getEncodedInternal(this);
292 issuerPrincipal = X509CRLImpl.getIssuerX500Principal(this);
  /libcore/ojluni/src/main/java/sun/security/provider/
X509Factory.java 32 import sun.security.x509.X509CRLImpl;
57 * @see sun.security.x509.X509CRLImpl
169 * Return an interned X509CRLImpl for the given certificate.
172 public static synchronized X509CRLImpl intern(X509CRL c)
177 boolean isImpl = c instanceof X509CRLImpl;
180 encoding = ((X509CRLImpl)c).getEncodedInternal();
184 X509CRLImpl newC = (X509CRLImpl)getFromCache(crlCache, encoding);
189 newC = (X509CRLImpl)c;
191 newC = new X509CRLImpl(encoding)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CRLImpl.java 92 public class X509CRLImpl extends X509CRL implements DerEncoder {
132 private X509CRLImpl() { }
144 public X509CRLImpl(byte[] crlData) throws CRLException {
159 public X509CRLImpl(DerValue val) throws CRLException {
175 public X509CRLImpl(InputStream inStrm) throws CRLException {
191 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate) {
207 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate,
247 public X509CRLImpl(X500Name issuer, Date thisDate, Date nextDate,
    [all...]
  /libcore/ojluni/src/main/java/sun/security/pkcs/
PKCS7.java 50 import sun.security.x509.X509CRLImpl;
344 crls[i] = new X509CRLImpl(crlVals[i]);
515 // cast to X509CRLImpl[] since X509CRLImpl implements DerEncoder
516 Set<X509CRLImpl> implCRLs = new HashSet<X509CRLImpl>(crls.length);
518 if (crl instanceof X509CRLImpl)
519 implCRLs.add((X509CRLImpl) crl);
523 implCRLs.add(new X509CRLImpl(encoded));
535 implCRLs.toArray(new X509CRLImpl[implCRLs.size()]))
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
AlgorithmChecker.java 57 import sun.security.x509.X509CRLImpl;
335 X509CRLImpl x509CRLImpl = null;
337 x509CRLImpl = X509CRLImpl.toImpl(crl);
342 AlgorithmId algorithmId = x509CRLImpl.getSigAlgId();
DistributionPointFetcher.java 324 X509CRLImpl crlImpl = X509CRLImpl.toImpl(crl);
726 private static boolean issues(X509CertImpl cert, X509CRLImpl crl,
    [all...]
  /libcore/
openjdk_java_files.mk     [all...]

Completed in 303 milliseconds