Searched refs:cipherTest (Results 1 - 16 of 16) sorted by relevance

/openjdk9/jdk/test/javax/net/ssl/sanity/interop/
H A DClientJSSEServerJSSE.java50 CipherTest.Client newClient(CipherTest cipherTest) throws Exception { argument
51 return new JSSEClient(cipherTest);
54 CipherTest.Server newServer(CipherTest cipherTest) throws Exception { argument
55 return new JSSEServer(cipherTest);
H A DJSSEServer.java40 JSSEServer(CipherTest cipherTest) throws Exception { argument
41 super(cipherTest);
43 serverContext.init(new KeyManager[] {cipherTest.keyManager}, new TrustManager[] {cipherTest.trustManager}, cipherTest.secureRandom);
46 serverSocket = (SSLServerSocket)factory.createServerSocket(cipherTest.serverPort);
47 cipherTest.serverPort = serverSocket.getLocalPort();
53 System.out.println("JSSE Server listening on port " + cipherTest.serverPort);
55 (cipherTest.THREADS, DaemonThreadFactory.INSTANCE);
59 socket.setSoTimeout(cipherTest
[all...]
H A DJSSEClient.java40 JSSEClient(CipherTest cipherTest) throws Exception { argument
41 super(cipherTest);
50 sslContext.init(new KeyManager[] {keyManager}, new TrustManager[] {cipherTest.trustManager}, cipherTest.secureRandom);
52 socket = (SSLSocket)factory.createSocket("127.0.0.1", cipherTest.serverPort);
53 socket.setSoTimeout(cipherTest.TIMEOUT);
H A DCipherTest.java66 final CipherTest cipherTest; field in class:CipherTest.Server
68 Server(CipherTest cipherTest) throws Exception { argument
69 this.cipherTest = cipherTest;
346 final CipherTest cipherTest; field in class:CipherTest.Client
348 Client(CipherTest cipherTest) throws Exception { argument
349 this.cipherTest = cipherTest;
354 TestParameters params = cipherTest.getTest();
367 cipherTest
453 newClient(CipherTest cipherTest) argument
455 newServer(CipherTest cipherTest) argument
[all...]
/openjdk9/jdk/test/sun/security/pkcs11/fips/
H A DJSSEServer.java39 JSSEServer(CipherTest cipherTest) throws Exception { argument
40 super(cipherTest);
42 serverContext.init(new KeyManager[] {cipherTest.keyManager}, new TrustManager[] {cipherTest.trustManager}, cipherTest.secureRandom);
45 serverSocket = (SSLServerSocket)factory.createServerSocket(cipherTest.serverPort);
46 cipherTest.serverPort = serverSocket.getLocalPort();
52 System.out.println("JSSE Server listening on port " + cipherTest.serverPort);
54 (cipherTest.THREADS, DaemonThreadFactory.INSTANCE);
58 socket.setSoTimeout(cipherTest
[all...]
H A DJSSEClient.java39 JSSEClient(CipherTest cipherTest) throws Exception { argument
40 super(cipherTest);
49 sslContext.init(new KeyManager[] {CipherTest.keyManager}, new TrustManager[] {cipherTest.trustManager}, cipherTest.secureRandom);
51 socket = (SSLSocket)factory.createSocket("127.0.0.1", cipherTest.serverPort);
52 socket.setSoTimeout(cipherTest.TIMEOUT);
H A DClientJSSEServerJSSE.java84 CipherTest.Client newClient(CipherTest cipherTest) throws Exception { argument
85 return new JSSEClient(cipherTest);
88 CipherTest.Server newServer(CipherTest cipherTest) throws Exception { argument
89 return new JSSEServer(cipherTest);
H A DCipherTest.java65 final CipherTest cipherTest; field in class:CipherTest.Server
67 Server(CipherTest cipherTest) throws Exception { argument
68 this.cipherTest = cipherTest;
346 final CipherTest cipherTest; field in class:CipherTest.Client
348 Client(CipherTest cipherTest) throws Exception { argument
349 this.cipherTest = cipherTest;
354 TestParameters params = cipherTest.getTest();
367 cipherTest
463 newClient(CipherTest cipherTest) argument
465 newServer(CipherTest cipherTest) argument
[all...]
/openjdk9/jdk/test/sun/security/pkcs11/sslecc/
H A DClientJSSEServerJSSE.java79 CipherTest.Client newClient(CipherTest cipherTest) throws Exception { argument
80 return new JSSEClient(cipherTest);
84 CipherTest.Server newServer(CipherTest cipherTest) throws Exception { argument
85 return new JSSEServer(cipherTest);
H A DJSSEServer.java43 JSSEServer(CipherTest cipherTest) throws Exception { argument
44 super(cipherTest);
88 cipherTest.setFailed();
95 cipherTest.setFailed();
109 cipherTest.setFailed();
H A DCipherTest.java67 final CipherTest cipherTest; field in class:CipherTest.Server
69 Server(CipherTest cipherTest) throws Exception { argument
70 this.cipherTest = cipherTest;
354 final CipherTest cipherTest; field in class:CipherTest.Client
356 Client(CipherTest cipherTest) throws Exception { argument
357 this.cipherTest = cipherTest;
363 TestParameters params = cipherTest.getTest();
380 cipherTest
467 newClient(CipherTest cipherTest) argument
469 newServer(CipherTest cipherTest) argument
[all...]
H A DJSSEClient.java36 JSSEClient(CipherTest cipherTest) throws Exception { argument
37 super(cipherTest);
/openjdk9/jdk/test/javax/net/ssl/TLS/
H A DJSSEServer.java39 JSSEServer(CipherTestUtils cipherTest, int serverPort, argument
41 super(cipherTest);
43 serverContext.init(new KeyManager[]{cipherTest.getServerKeyManager()},
44 new TrustManager[]{cipherTest.getServerTrustManager()},
H A DTestJSSE.java113 CipherTestUtils.Client newClient(CipherTestUtils cipherTest, int port) argument
115 return new JSSEClient(cipherTest, host, port, protocol, cipher);
119 CipherTestUtils.Server newServer(CipherTestUtils cipherTest, int port) argument
121 return new JSSEServer(cipherTest, port, protocol, cipher);
H A DJSSEClient.java45 JSSEClient(CipherTestUtils cipherTest, String host, int port, argument
47 super(cipherTest, ciphersuite);
52 cipherTest.getClientKeyManager());
61 new TrustManager[]{ cipherTest.getClientTrustManager() },
H A DCipherTestUtils.java198 final CipherTestUtils cipherTest; field in class:CipherTestUtils.Server
200 Server(CipherTestUtils cipherTest) throws Exception { argument
201 this.cipherTest = cipherTest;
373 final CipherTestUtils cipherTest; field in class:CipherTestUtils.Client
376 Client(CipherTestUtils cipherTest) throws Exception { argument
377 this.cipherTest = cipherTest;
380 Client(CipherTestUtils cipherTest, String testedCipherSuite) argument
382 this.cipherTest
557 newClient(CipherTestUtils cipherTest, int testPort) argument
560 newServer(CipherTestUtils cipherTest, int testPort) argument
[all...]

Completed in 66 milliseconds