aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net/sourceforge/jnlp/security/HttpsCertVerifier.java
diff options
context:
space:
mode:
Diffstat (limited to 'netx/net/sourceforge/jnlp/security/HttpsCertVerifier.java')
-rw-r--r--netx/net/sourceforge/jnlp/security/HttpsCertVerifier.java28
1 files changed, 17 insertions, 11 deletions
diff --git a/netx/net/sourceforge/jnlp/security/HttpsCertVerifier.java b/netx/net/sourceforge/jnlp/security/HttpsCertVerifier.java
index 8490cf8..edd5899 100644
--- a/netx/net/sourceforge/jnlp/security/HttpsCertVerifier.java
+++ b/netx/net/sourceforge/jnlp/security/HttpsCertVerifier.java
@@ -80,7 +80,14 @@ public class HttpsCertVerifier implements CertVerifier {
return isTrusted;
}
- public CertPath getCertPath() {
+
+ /* XXX: Most of these methods have a CertPath param that should be passed
+ * from the UI dialogs. However, this is not implemented yet so most of
+ * the params are ignored.
+ */
+
+ @Override
+ public CertPath getCertPath(CertPath certPath) { // Parameter ignored.
ArrayList<X509Certificate> list = new ArrayList<X509Certificate>();
for (int i = 0; i < chain.length; i++)
@@ -99,7 +106,8 @@ public class HttpsCertVerifier implements CertVerifier {
return certPaths.get(0);
}
- public ArrayList<String> getDetails() {
+ @Override
+ public List<String> getDetails(CertPath certPath) { // Parameter ignored.
boolean hasExpiredCert = false;
boolean hasExpiringCert = false;
@@ -192,13 +200,15 @@ public class HttpsCertVerifier implements CertVerifier {
details.add(detail);
}
- public Certificate getPublisher() {
+ @Override
+ public Certificate getPublisher(CertPath certPath) { // Paramater ignored.
if (chain.length > 0)
return (Certificate) chain[0];
return null;
}
- public Certificate getRoot() {
+ @Override
+ public Certificate getRoot(CertPath certPath) { // Parameter ignored.
if (chain.length > 0)
return (Certificate) chain[chain.length - 1];
return null;
@@ -207,18 +217,14 @@ public class HttpsCertVerifier implements CertVerifier {
public boolean getRootInCacerts() {
try {
KeyStore[] caCertsKeyStores = KeyStores.getCAKeyStores();
- return CertificateUtils.inKeyStores((X509Certificate) getRoot(), caCertsKeyStores);
+ return CertificateUtils.inKeyStores((X509Certificate) getRoot(null), caCertsKeyStores);
} catch (Exception e) {
}
return false;
}
- public boolean hasSigningIssues() {
- return false;
- }
-
- public boolean noSigningIssues() {
+ @Override
+ public boolean hasSigningIssues(CertPath certPath) {
return false;
}
-
}