HomeSort by relevance Sort by last modified time
    Searched defs:X509CertImpl (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
OCSPResponse.java 184 private List<X509CertImpl> certs;
185 private X509CertImpl signerCert = null;
219 certs = new ArrayList<X509CertImpl>();
370 certs = new ArrayList<X509CertImpl>(derCerts.length);
373 X509CertImpl cert =
374 new X509CertImpl(derCerts[i].toByteArray());
386 certs = new ArrayList<X509CertImpl>();
431 certs.add(X509CertImpl.toImpl(issuerCert));
433 certs.add(X509CertImpl.toImpl(responderCert));
441 for (X509CertImpl cert : certs)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CertImpl.java 43 * The X509CertImpl class represents an X.509 certificate. These certificates
73 public class X509CertImpl extends X509Certificate implements DerEncoder {
172 public X509CertImpl() { }
186 public X509CertImpl(byte[] certData) throws CertificateException {
208 public X509CertImpl(InputStream in) throws CertificateException {
292 public X509CertImpl(X509CertInfo certInfo) {
304 public X509CertImpl(DerValue derVal) throws CertificateException {
322 public X509CertImpl(DerValue derVal, byte[] encoded)
    [all...]

Completed in 72 milliseconds