Home | History | Annotate | Download | only in cert

Lines Matching defs:certificate

27 import java.security.cert.Certificate;
40 * Following certificate chain was taken from https://www.verisign.com and
41 * uses MD2withRSA for the root certificate. This chain stops validating
46 * A selfsigned certificate using MD2withRSA
49 * Certificate:
86 "-----BEGIN CERTIFICATE-----\n"
99 + "-----END CERTIFICATE-----\n";
102 * A certificate signed by selfSignedCertMD2
105 * Certificate:
145 * Certificate Sign, CRL Sign
148 * X509v3 Certificate Policies:
170 "-----BEGIN CERTIFICATE-----\n"
199 + "-----END CERTIFICATE-----";
202 * A certificate signed by signedCert1Chain1
205 * Certificate:
244 * X509v3 Certificate Policies:
252 * Certificate Sign, CRL Sign
282 "-----BEGIN CERTIFICATE-----\n"
316 + "-----END CERTIFICATE-----";
319 * Following certificate chain was taken from https://www.thawte.com and
320 * uses MD5withRSA for the root certificate. This chain stops validating
325 * A selfsigned certificate using MD5withRSA
328 * Certificate:
367 "-----BEGIN CERTIFICATE-----\n"
385 + "-----END CERTIFICATE-----";
388 * A certificate signed by selfSignedCertMD5
391 * Certificate:
428 * X509v3 Certificate Policies:
432 * Certificate Sign, CRL Sign
454 "-----BEGIN CERTIFICATE-----\n"
484 + "-----END CERTIFICATE-----";
487 * A certificate signed by signedCert1Chain2
490 * Certificate:
529 * X509v3 Certificate Policies:
535 * Certificate Sign, CRL Sign
561 "-----BEGIN CERTIFICATE-----\n"
589 + "-----END CERTIFICATE-----";
596 Certificate certificate = certificateFactory
600 certificate.verify(certificate.getPublicKey());
609 Certificate certificate = certificateFactory
613 certificate.verify(certificate.getPublicKey());
696 private List<Certificate> getCertList(boolean useMD2root,
723 ArrayList<Certificate> result = new ArrayList<Certificate>();