Home | History | Annotate | Download | only in jsse

Lines Matching refs:certs

102             Certificate[] certs = hash.get(alias).getCertificateChain();
103 if (certs[0] instanceof X509Certificate) {
104 X509Certificate[] xcerts = new X509Certificate[certs.length];
105 for (int i = 0; i < certs.length; i++) {
106 xcerts[i] = (X509Certificate) certs[i];
155 final Certificate[] certs = entry.getCertificateChain();
156 final String alg = certs[0].getPublicKey().getAlgorithm();
161 loop: for (int ii = 0; ii < certs.length; ii++) {
162 if (certs[ii] instanceof X509Certificate) {
163 X500Principal issuer = ((X509Certificate) certs[ii])