com.sun.net.httpserver.HttpsParameters Java Examples
The following examples show how to use
com.sun.net.httpserver.HttpsParameters.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MetricsEndpointMockServerTLS.java From promregator with Apache License 2.0 | 5 votes |
public void start() throws IOException { InetSocketAddress bindAddress = new InetSocketAddress("127.0.0.1", this.port); this.server = HttpsServer.create(bindAddress, 0); this.server.setHttpsConfigurator(new HttpsConfigurator(this.createSslContext()) { public void configure(HttpsParameters params) { SSLContext c = getSSLContext(); params.setSSLParameters(c.getDefaultSSLParameters()); } }); this.server.createContext("/metrics", this.getMetricsEndpointHandler()); this.server.start(); }
Example #2
Source File: ConsoleProxySecureServerFactoryImpl.java From cosmic with Apache License 2.0 | 5 votes |
@Override public HttpServer createHttpServerInstance(final int port) throws IOException { try { final HttpsServer server = HttpsServer.create(new InetSocketAddress(port), 5); server.setHttpsConfigurator(new HttpsConfigurator(ConsoleProxySecureServerFactoryImpl.this.sslContext) { @Override public void configure(final HttpsParameters params) { final SSLContext c = getSSLContext(); // get the default parameters final SSLParameters sslparams = c.getDefaultSSLParameters(); params.setSSLParameters(sslparams); params.setProtocols(SSLUtils.getRecommendedProtocols()); params.setCipherSuites(SSLUtils.getRecommendedCiphers()); // statement above could throw IAE if any params invalid. // eg. if app has a UI and parameters supplied by a user. } }); s_logger.info("create HTTPS server instance on port: " + port); return server; } catch (final Exception ioe) { s_logger.error(ioe.toString(), ioe); } return null; }
Example #3
Source File: ConsoleProxySecureServerFactoryImpl.java From cloudstack with Apache License 2.0 | 5 votes |
@Override public HttpServer createHttpServerInstance(int port) throws IOException { try { HttpsServer server = HttpsServer.create(new InetSocketAddress(port), 5); server.setHttpsConfigurator(new HttpsConfigurator(sslContext) { @Override public void configure(HttpsParameters params) { // get the remote address if needed InetSocketAddress remote = params.getClientAddress(); SSLContext c = getSSLContext(); // get the default parameters SSLParameters sslparams = c.getDefaultSSLParameters(); params.setSSLParameters(sslparams); params.setProtocols(SSLUtils.getRecommendedProtocols()); params.setCipherSuites(SSLUtils.getRecommendedCiphers()); // statement above could throw IAE if any params invalid. // eg. if app has a UI and parameters supplied by a user. } }); s_logger.info("create HTTPS server instance on port: " + port); return server; } catch (Exception ioe) { s_logger.error(ioe.toString(), ioe); } return null; }
Example #4
Source File: HttpRequestProcessor.java From protect with MIT License | 4 votes |
public void setupTls(final List<X509Certificate> caCerts, final X509Certificate hostCert, final PrivateKey hostKey, final int serverIndex) throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, CertificateException, IOException, UnrecoverableKeyException { // Configure SSL context final SSLContext sslContext = SSLContext.getInstance(CommonConfiguration.TLS_VERSION); // Create in-memory key store final KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType()); final char[] password = "password".toCharArray(); keyStore.load(null, password); // Add the CA certificates int caIndex = 1; for (final X509Certificate caCert : caCerts) { keyStore.setCertificateEntry("ca-" + caIndex, caCert); caIndex++; } // Add certificate and private key for the server final X509Certificate ourCaCert = caCerts.get(serverIndex - 1); keyStore.setKeyEntry("host", hostKey, password, new X509Certificate[] { hostCert, ourCaCert }); // Make Key Manager Factory final KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509"); kmf.init(keyStore, password); // setup the trust manager factory final TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509"); tmf.init(keyStore); sslContext.init(kmf.getKeyManagers(), tmf.getTrustManagers(), new SecureRandom()); this.server.setHttpsConfigurator(new HttpsConfigurator(sslContext) { public void configure(final HttpsParameters params) { try { // Configure context final SSLEngine engine = sslContext.createSSLEngine(); params.setWantClientAuth(true); params.setNeedClientAuth(false); params.setCipherSuites(engine.getEnabledCipherSuites()); } catch (Exception ex) { throw new RuntimeException("Failed to create HTTPS server"); } } }); }
Example #5
Source File: ManyRequests.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public void configure(HttpsParameters params) { params.setSSLParameters(getSSLContext().getSupportedSSLParameters()); }
Example #6
Source File: SmokeTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public void configure (HttpsParameters params) { params.setSSLParameters (getSSLContext().getSupportedSSLParameters()); }
Example #7
Source File: HTTPTestServer.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
@Override public void configure (HttpsParameters params) { params.setSSLParameters (getSSLContext().getSupportedSSLParameters()); }
Example #8
Source File: RefactoringMinerHttpsServer.java From RefactoringMiner with MIT License | 4 votes |
public static void main(String[] args) throws Exception { Properties prop = new Properties(); InputStream input = new FileInputStream("server.properties"); prop.load(input); String hostName = prop.getProperty("hostname"); int port = Integer.parseInt(prop.getProperty("port")); String keystore = prop.getProperty("keystore"); String keyStorePass = prop.getProperty("keystore-password"); InetSocketAddress inetSocketAddress = new InetSocketAddress(InetAddress.getByName(hostName), port); HttpsServer server = HttpsServer.create(inetSocketAddress, 0); SSLContext sslContext = SSLContext.getInstance("TLS"); // initialize the keystore char[] password = keyStorePass.toCharArray(); KeyStore ks = KeyStore.getInstance("JKS"); FileInputStream fis = new FileInputStream(keystore); ks.load(fis, password); // setup the key manager factory KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509"); kmf.init(ks, password); // setup the trust manager factory TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509"); tmf.init(ks); // setup the HTTPS context and parameters sslContext.init(kmf.getKeyManagers(), tmf.getTrustManagers(), null); server.setHttpsConfigurator(new HttpsConfigurator(sslContext) { public void configure(HttpsParameters params) { try { // initialize the SSL context SSLContext context = getSSLContext(); SSLEngine engine = context.createSSLEngine(); params.setNeedClientAuth(false); params.setCipherSuites(engine.getEnabledCipherSuites()); params.setProtocols(engine.getEnabledProtocols()); // Set the SSL parameters SSLParameters sslParameters = context.getSupportedSSLParameters(); params.setSSLParameters(sslParameters); } catch (Exception ex) { System.out.println("Failed to create HTTPS port"); } } }); server.createContext("/RefactoringMiner", new MyHandler()); server.setExecutor(new ThreadPoolExecutor(4, 8, 60, TimeUnit.SECONDS, new ArrayBlockingQueue<Runnable>(100))); server.start(); System.out.println(InetAddress.getLocalHost()); }
Example #9
Source File: MockHttpServer.java From ribbon with Apache License 2.0 | 4 votes |
public void before(final Description description) throws Exception { this.service = Executors.newFixedThreadPool( threadCount, new ThreadFactoryBuilder().setDaemon(true).setNameFormat("TestHttpServer-%d").build()); InetSocketAddress inetSocketAddress = new InetSocketAddress("localhost", 0); if (hasSsl) { byte[] sampleTruststore1 = Base64.decode(TEST_TS1); byte[] sampleKeystore1 = Base64.decode(TEST_KS1); keystore = File.createTempFile("SecureAcceptAllGetTest", ".keystore"); truststore = File.createTempFile("SecureAcceptAllGetTest", ".truststore"); FileOutputStream keystoreFileOut = new FileOutputStream(keystore); try { keystoreFileOut.write(sampleKeystore1); } finally { keystoreFileOut.close(); } FileOutputStream truststoreFileOut = new FileOutputStream(truststore); try { truststoreFileOut.write(sampleTruststore1); } finally { truststoreFileOut.close(); } KeyStore ks = KeyStore.getInstance("JKS"); ks.load(new FileInputStream(keystore), PASSWORD.toCharArray()); KeyManagerFactory kmf = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm()); kmf.init(ks, PASSWORD.toCharArray()); KeyStore ts = KeyStore.getInstance("JKS"); ts.load(new FileInputStream(truststore), PASSWORD.toCharArray()); TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm()); tmf.init(ts); SSLContext sc = SSLContext.getInstance("TLS"); sc.init(kmf.getKeyManagers(), tmf.getTrustManagers(), null); HttpsServer secureServer = HttpsServer.create(inetSocketAddress, 0); secureServer.setHttpsConfigurator(new HttpsConfigurator(sc) { public void configure (HttpsParameters params) { SSLContext c = getSSLContext(); SSLParameters sslparams = c.getDefaultSSLParameters(); params.setSSLParameters(sslparams); } }); server = secureServer; } else { server = HttpServer.create(inetSocketAddress, 0); } server.setExecutor(service); for (Entry<String, HttpHandler> handler : handlers.entrySet()) { server.createContext(handler.getKey(), handler.getValue()); } server.start(); localHttpServerPort = server.getAddress().getPort(); System.out.println(description.getClassName() + " TestServer is started: " + getServerUrl()); }