aboutsummaryrefslogtreecommitdiff
path: root/moaSig/common/src/test/java/test/at/gv/egovernment/moa/util/SSLUtilsTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'moaSig/common/src/test/java/test/at/gv/egovernment/moa/util/SSLUtilsTest.java')
-rw-r--r--moaSig/common/src/test/java/test/at/gv/egovernment/moa/util/SSLUtilsTest.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/moaSig/common/src/test/java/test/at/gv/egovernment/moa/util/SSLUtilsTest.java b/moaSig/common/src/test/java/test/at/gv/egovernment/moa/util/SSLUtilsTest.java
index 31a0591..8715380 100644
--- a/moaSig/common/src/test/java/test/at/gv/egovernment/moa/util/SSLUtilsTest.java
+++ b/moaSig/common/src/test/java/test/at/gv/egovernment/moa/util/SSLUtilsTest.java
@@ -33,8 +33,8 @@ import javax.net.ssl.SSLSocketFactory;
import junit.framework.TestCase;
-import com.sun.net.ssl.HostnameVerifier;
-import com.sun.net.ssl.HttpsURLConnection;
+//import com.sun.net.ssl.HostnameVerifier;
+//import com.sun.net.ssl.HttpsURLConnection;
import at.gv.egovernment.moaspss.util.KeyStoreUtils;
import at.gv.egovernment.moaspss.util.SSLUtils;
@@ -52,7 +52,7 @@ public class SSLUtilsTest extends TestCase {
protected void setUp() throws Exception {
//System.setProperty("javax.net.debug", "all");
- Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
+ //Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
System.setProperty("https.cipherSuites", "SSL_DHE_DSS_WITH_DES_CBC_SHA,SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA,SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA,SSL_RSA_WITH_DES_CBC_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA,SSL_RSA_EXPORT_WITH_RC4_40_MD5");
}
@@ -146,7 +146,7 @@ public class SSLUtilsTest extends TestCase {
System.out.println(requestMethod + " " + urlString);
URL url = new URL(urlString);
- HttpsURLConnection conn = (HttpsURLConnection)url.openConnection();
+ /*HttpsURLConnection conn = (HttpsURLConnection)url.openConnection();
conn.setRequestMethod(requestMethod);
conn.setDoInput(true);
conn.setDoOutput(true);
@@ -164,7 +164,7 @@ public class SSLUtilsTest extends TestCase {
catch (SSLException ex) {
assertFalse(shouldOk);
}
- }
+ }*/
// private byte[] readTruststore(String filename) throws IOException {
// if (filename == null)
// return null;
@@ -174,9 +174,9 @@ public class SSLUtilsTest extends TestCase {
// in.close();
// return buffer;
// }
- private class HostnameVerifierHack implements HostnameVerifier {
- public boolean verify(String arg0, String arg1) {
- return true;
- }
+ //private class HostnameVerifierHack implements HostnameVerifier {
+ //public boolean verify(String arg0, String arg1) {
+ // return true;
+ //}
}
}