Home | History | Annotate | Download | only in ssl

Lines Matching full:certificate

215 +import java.security.cert.Certificate;
270 + java.security.cert.Certificate[] trustallCerts = null;
271 + java.security.cert.Certificate[] trustsrvCerts = null;
272 + java.security.cert.Certificate[] trusturlCerts = null;
577 + Certificate[] certs = new Certificate[c.toArray().length];
579 + Certificate tmpcert = cf.generateCertificate(new ByteArrayInputStream(cert));
585 + certs = (Certificate[]) c.toArray();
605 + trustsrvCerts = new Certificate[c.toArray().length];
607 + Certificate tmpcert = cf.generateCertificate(new ByteArrayInputStream(cert));
610 + trustsrvCerts = (Certificate[]) c.toArray();
915 + java.security.cert.Certificate[] currentTrustedCerts;
1031 + "Peer Certificate");
1062 + + " You Asked to View the Certificate.";
1066 + + " The VNC Server's Certificate does not match the Certificate\n"
1070 + + " The VNC Server's Certificate does not match the Website's\n"
1071 + + " HTTPS Certificate (that you previously accepted; either\n"
1072 + + " manually or automatically via Certificate Authority.)";
1557 + java.security.cert.Certificate[] trustallCerts = null;
1571 + String s1 = "Accept this certificate temporarily for this session";
1572 + String s2 = "Do not accept this certificate and do not connect to"
1576 + TrustDialog (String h, int p, java.security.cert.Certificate[] s) {
1614 ++ " - Your requesting to View the Certificate before accepting.\n"
1616 ++ " - The VNC server is using a Self-Signed Certificate or a Certificate\n"
1620 ++ " the Apache Web server has a certificate *different* from the VNC server's.\n"
1622 ++ " - No previously accepted Certificate (via Web Broswer/Java Plugin) could be\n"
1623 ++ " obtained by this applet to compare the VNC Server Certificate against.\n"
1625 ++ " - The VNC Server's Certificate does not match the one specified in the\n"
1631 ++ "By safely copying the VNC server's Certificate (or using a common Certificate\n"
1632 ++ "Authority certificate
1637 ++ "certificate (except for the Apache portal case above where they don't match.)\n"
1659 + viewcert = new Button("View Certificate");
1705 + /* View Certificate button clicked */
1709 + viewcert.setLabel("View Certificate");
1717 + textarea.append("Certificate[" +
2022 +m += "SSL certificates, and so cannot authenticate the certificate\n";
2030 +m += "has previously accepted the same certificate. You may have set\n";
2032 +m += "certificate was signed by a CA cert that your Web Browser or\n";
2046 + no = new Button("No, Let Me See the Certificate.");
2078 + java.security.cert.Certificate cert;
2081 + CertInfo(java.security.cert.Certificate c) {