HomeSort by relevance Sort by last modified time
    Searched refs:X509CertImpl (Results 1 - 25 of 26) sorted by null

1 2

  /libcore/ojluni/src/main/java/java/security/cert/
X509Certificate.java 35 import sun.security.x509.X509CertImpl;
248 issuerX500Principal = X509CertImpl.getIssuerX500Principal(this);
291 subjectX500Principal = X509CertImpl.getSubjectX500Principal(this);
508 return X509CertImpl.getExtendedKeyUsage(this);
605 return X509CertImpl.getSubjectAlternativeNames(this);
647 return X509CertImpl.getIssuerAlternativeNames(this);
676 X509CertImpl.verify(this, key, sigProvider);
Certificate.java 36 import sun.security.x509.X509CertImpl;
109 byte[] thisCert = X509CertImpl.getEncodedInternal(this);
110 byte[] otherCert = X509CertImpl.getEncodedInternal((Certificate)other);
127 byte[] certData = X509CertImpl.getEncodedInternal(this);
X509CertSelector.java     [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
ConstraintsChecker.java 43 import sun.security.x509.X509CertImpl;
146 !X509CertImpl.isSelfIssued(currCert))) {
176 X509CertImpl currCertImpl;
178 currCertImpl = X509CertImpl.toImpl(currCert);
250 if (X509CertImpl.isSelfIssued(currCert)) {
264 if (!X509CertImpl.isSelfIssued(currCert)) {
298 if (!X509CertImpl.isSelfIssued(cert)) {
ForwardState.java 45 import sun.security.x509.X509CertImpl;
62 X509CertImpl cert;
167 X509CertImpl icert = X509CertImpl.toImpl(cert);
180 if (!X509CertImpl.isSelfIssued(cert)) {
193 if (init || !X509CertImpl.isSelfIssued(cert)){
OCSP.java 54 import sun.security.x509.X509CertImpl;
120 X509CertImpl certImpl = X509CertImpl.toImpl(cert);
173 X509CertImpl certImpl = X509CertImpl.toImpl(cert);
307 return getResponderURI(X509CertImpl.toImpl(cert));
314 static URI getResponderURI(X509CertImpl certImpl) {
Vertex.java 36 import sun.security.x509.X509CertImpl;
137 X509CertImpl x509Cert = null;
139 x509Cert = X509CertImpl.toImpl(cert);
ReverseBuilder.java 59 import sun.security.x509.X509CertImpl;
381 X509CertImpl cpListCertImpl = X509CertImpl.toImpl(cpListCert);
416 if ((currentState.remainingCACerts <= 0) && !X509CertImpl.isSelfIssued(cert)) {
447 if (finalCert || !X509CertImpl.isSelfIssued(cert)){
464 X509CertImpl certImpl = X509CertImpl.toImpl(cert);
Builder.java 43 import sun.security.x509.X509CertImpl;
290 X509CertImpl certImpl;
292 certImpl = X509CertImpl.toImpl(cert);
435 if (selector.match(targetCert) && !X509CertImpl.isSelfSigned
450 if (!X509CertImpl.isSelfSigned
PKIXCertPathValidator.java 34 import sun.security.x509.X509CertImpl;
105 X509CertImpl firstCertImpl = X509CertImpl.toImpl(firstCert);
PolicyChecker.java 47 import sun.security.x509.X509CertImpl;
216 X509CertImpl currCertImpl = null;
218 currCertImpl = X509CertImpl.toImpl(currCert);
267 static int mergeExplicitPolicy(int explicitPolicy, X509CertImpl currCert,
270 if ((explicitPolicy > 0) && !X509CertImpl.isSelfIssued(currCert)) {
320 static int mergePolicyMapping(int policyMapping, X509CertImpl currCert)
323 if ((policyMapping > 0) && !X509CertImpl.isSelfIssued(currCert)) {
369 X509CertImpl currCert) throws CertPathValidatorException
371 if ((inhibitAnyPolicy > 0) && !X509CertImpl.isSelfIssued(currCert)) {
428 X509CertImpl currCert, boolean finalCert
    [all...]
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...]
AlgorithmChecker.java 56 import sun.security.x509.X509CertImpl;
177 X509CertImpl x509Cert = null;
179 x509Cert = X509CertImpl.toImpl((X509Certificate)cert);
189 algorithmId = (AlgorithmId)x509Cert.get(X509CertImpl.SIG_ALG);
ReverseState.java 47 import sun.security.x509.X509CertImpl;
295 X509CertImpl icert = X509CertImpl.toImpl(cert);
X509CertificatePair.java 40 import sun.security.x509.X509CertImpl;
243 (new X509CertImpl(opt.toByteArray()));
254 (new X509CertImpl(opt.toByteArray()));
DistributionPointFetcher.java 103 X509CertImpl certImpl = X509CertImpl.toImpl(cert);
146 X509CertImpl certImpl, DistributionPoint point, boolean[] reasonsMask,
317 static boolean verifyCRL(X509CertImpl certImpl, DistributionPoint point,
726 private static boolean issues(X509CertImpl cert, X509CRLImpl crl,
    [all...]
RevocationChecker.java 665 X509CertImpl currCert = null;
667 currCert = X509CertImpl.toImpl(cert);
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/
X509Factory.java 31 import sun.security.x509.X509CertImpl;
56 * @see sun.security.x509.X509CertImpl
93 X509CertImpl cert = (X509CertImpl)getFromCache(certCache, encoding);
97 cert = new X509CertImpl(encoding);
130 * Return an interned X509CertImpl for the given certificate.
131 * If the given X509Certificate or X509CertImpl is already present
133 * if it is a X509Certificate, it is first converted to a X509CertImpl.
134 * Then the X509CertImpl is added to the cache and returned.
140 * implementations to an X509CertImpl
    [all...]
  /libcore/ojluni/src/main/java/sun/security/validator/
SimpleValidator.java 36 import sun.security.x509.X509CertImpl;
275 if (cert instanceof X509CertImpl) {
276 X509CertImpl certImpl = (X509CertImpl)cert;
313 if (!X509CertImpl.isSelfIssued(cert)) {
  /libcore/ojluni/src/main/java/sun/security/pkcs/
PKCS7.java 48 import sun.security.x509.X509CertImpl;
225 certificates[i] = new X509CertImpl(contents[i], original);
304 certificates[count] = new X509CertImpl(certVals[i], original);
421 certificates[i] = new X509CertImpl(certVals[i], original);
491 // cast to X509CertImpl[] since X509CertImpl implements DerEncoder
492 X509CertImpl implCerts[] = new X509CertImpl[certificates.length];
494 if (certificates[i] instanceof X509CertImpl)
495 implCerts[i] = (X509CertImpl) certificates[i]
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CertImpl.java 50 * The X509CertImpl class represents an X.509 certificate. These certificates
80 public class X509CertImpl extends X509Certificate implements DerEncoder {
179 public X509CertImpl() { }
193 public X509CertImpl(byte[] certData) throws CertificateException {
213 public X509CertImpl(InputStream in) throws CertificateException {
296 public X509CertImpl(X509CertInfo certInfo) {
308 public X509CertImpl(DerValue derVal) throws CertificateException {
325 public X509CertImpl(DerValue derVal, byte[] encoded)
    [all...]
NameConstraintsExtension.java 447 X509CertImpl certImpl = X509CertImpl.toImpl(cert);
CRLExtensions.java 188 if (id.equalsIgnoreCase(X509CertImpl.NAME)) { // fully qualified
OIDMap.java 54 private static final String ROOT = X509CertImpl.NAME + "." +
  /libcore/
openjdk_java_files.mk     [all...]

Completed in 466 milliseconds

1 2