/jetty-8.1.5.v20120716/jetty-server/src/main/java/org/eclipse/jetty/server/ssl/SslConnector.java

# · Java · 342 lines · 90 code · 44 blank · 208 comment · 0 complexity · 9569b2657cb908bc5cc03e467dda95a9 MD5 · raw file

  1. package org.eclipse.jetty.server.ssl;
  2. //========================================================================
  3. //Copyright 2011-2012 Mort Bay Consulting Pty. Ltd.
  4. //------------------------------------------------------------------------
  5. //All rights reserved. This program and the accompanying materials
  6. //are made available under the terms of the Eclipse Public License v1.0
  7. //and Apache License v2.0 which accompanies this distribution.
  8. //The Eclipse Public License is available at
  9. //http://www.eclipse.org/legal/epl-v10.html
  10. //The Apache License v2.0 is available at
  11. //http://www.opensource.org/licenses/apache2.0.php
  12. //You may elect to redistribute this code under either of these licenses.
  13. //========================================================================
  14. import java.io.File;
  15. import java.security.SecureRandom;
  16. import java.security.Security;
  17. import javax.net.ssl.KeyManagerFactory;
  18. import javax.net.ssl.SSLContext;
  19. import javax.net.ssl.SSLEngine;
  20. import javax.net.ssl.TrustManagerFactory;
  21. import org.eclipse.jetty.server.Connector;
  22. import org.eclipse.jetty.util.ssl.SslContextFactory;
  23. /* ------------------------------------------------------------ */
  24. /** The interface for SSL connectors and their configuration methods.
  25. *
  26. */
  27. public interface SslConnector extends Connector
  28. {
  29. @Deprecated
  30. public static final String DEFAULT_KEYSTORE_ALGORITHM=(Security.getProperty("ssl.KeyManagerFactory.algorithm")==null?"SunX509":Security.getProperty("ssl.KeyManagerFactory.algorithm"));
  31. @Deprecated
  32. public static final String DEFAULT_TRUSTSTORE_ALGORITHM=(Security.getProperty("ssl.TrustManagerFactory.algorithm")==null?"SunX509":Security.getProperty("ssl.TrustManagerFactory.algorithm"));
  33. /** Default value for the keystore location path. @deprecated */
  34. @Deprecated
  35. public static final String DEFAULT_KEYSTORE = System.getProperty("user.home") + File.separator + ".keystore";
  36. /** String name of key password property. @deprecated */
  37. @Deprecated
  38. public static final String KEYPASSWORD_PROPERTY = "org.eclipse.jetty.ssl.keypassword";
  39. /** String name of keystore password property. @deprecated */
  40. @Deprecated
  41. public static final String PASSWORD_PROPERTY = "org.eclipse.jetty.ssl.password";
  42. /* ------------------------------------------------------------ */
  43. /**
  44. * @return the instance of SslContextFactory associated with the connector
  45. */
  46. public SslContextFactory getSslContextFactory();
  47. /* ------------------------------------------------------------ */
  48. /**
  49. * @return The array of Ciphersuite names to exclude from
  50. * {@link SSLEngine#setEnabledCipherSuites(String[])}
  51. * @deprecated
  52. */
  53. @Deprecated
  54. public abstract String[] getExcludeCipherSuites();
  55. /* ------------------------------------------------------------ */
  56. /**
  57. * @param cipherSuites The array of Ciphersuite names to exclude from
  58. * {@link SSLEngine#setEnabledCipherSuites(String[])}
  59. * @deprecated
  60. */
  61. @Deprecated
  62. public abstract void setExcludeCipherSuites(String[] cipherSuites);
  63. /* ------------------------------------------------------------ */
  64. /**
  65. * @return The array of Ciphersuite names to include in
  66. * {@link SSLEngine#setEnabledCipherSuites(String[])}
  67. * @deprecated
  68. */
  69. @Deprecated
  70. public abstract String[] getIncludeCipherSuites();
  71. /* ------------------------------------------------------------ */
  72. /**
  73. * @param cipherSuites The array of Ciphersuite names to include in
  74. * {@link SSLEngine#setEnabledCipherSuites(String[])}
  75. * @deprecated
  76. */
  77. @Deprecated
  78. public abstract void setIncludeCipherSuites(String[] cipherSuites);
  79. /* ------------------------------------------------------------ */
  80. /**
  81. * @param password The password for the key store
  82. * @deprecated
  83. */
  84. @Deprecated
  85. public abstract void setPassword(String password);
  86. /* ------------------------------------------------------------ */
  87. /**
  88. * @param password The password for the trust store
  89. * @deprecated
  90. */
  91. @Deprecated
  92. public abstract void setTrustPassword(String password);
  93. /* ------------------------------------------------------------ */
  94. /**
  95. * @param password The password (if any) for the specific key within
  96. * the key store
  97. * @deprecated
  98. */
  99. @Deprecated
  100. public abstract void setKeyPassword(String password);
  101. /* ------------------------------------------------------------ */
  102. /**
  103. * @return The SSL protocol (default "TLS") passed to {@link SSLContext#getInstance(String, String)}
  104. * @deprecated
  105. */
  106. @Deprecated
  107. public abstract String getProtocol();
  108. /* ------------------------------------------------------------ */
  109. /**
  110. * @param protocol The SSL protocol (default "TLS") passed to {@link SSLContext#getInstance(String, String)}
  111. * @deprecated
  112. */
  113. @Deprecated
  114. public abstract void setProtocol(String protocol);
  115. /* ------------------------------------------------------------ */
  116. /**
  117. * @param keystore The file or URL of the SSL Key store.
  118. * @deprecated
  119. */
  120. @Deprecated
  121. public abstract void setKeystore(String keystore);
  122. /* ------------------------------------------------------------ */
  123. /**
  124. * @return The file or URL of the SSL Key store.
  125. * @deprecated
  126. */
  127. @Deprecated
  128. public abstract String getKeystore();
  129. /* ------------------------------------------------------------ */
  130. /**
  131. * @return The type of the key store (default "JKS")
  132. * @deprecated
  133. */
  134. @Deprecated
  135. public abstract String getKeystoreType();
  136. /* ------------------------------------------------------------ */
  137. /**
  138. * @return True if SSL needs client authentication.
  139. * @see SSLEngine#getNeedClientAuth()
  140. * @deprecated
  141. */
  142. @Deprecated
  143. public abstract boolean getNeedClientAuth();
  144. /* ------------------------------------------------------------ */
  145. /**
  146. * @return True if SSL wants client authentication.
  147. * @see SSLEngine#getWantClientAuth()
  148. * @deprecated
  149. */
  150. @Deprecated
  151. public abstract boolean getWantClientAuth();
  152. /* ------------------------------------------------------------ */
  153. /**
  154. * @param needClientAuth True if SSL needs client authentication.
  155. * @see SSLEngine#getNeedClientAuth()
  156. * @deprecated
  157. */
  158. @Deprecated
  159. public abstract void setNeedClientAuth(boolean needClientAuth);
  160. /* ------------------------------------------------------------ */
  161. /**
  162. * @param wantClientAuth True if SSL wants client authentication.
  163. * @see SSLEngine#getWantClientAuth()
  164. * @deprecated
  165. */
  166. @Deprecated
  167. public abstract void setWantClientAuth(boolean wantClientAuth);
  168. /* ------------------------------------------------------------ */
  169. /**
  170. * @param keystoreType The type of the key store (default "JKS")
  171. * @deprecated
  172. */
  173. @Deprecated
  174. public abstract void setKeystoreType(String keystoreType);
  175. /* ------------------------------------------------------------ */
  176. /**
  177. * @return The SSL provider name, which if set is passed to
  178. * {@link SSLContext#getInstance(String, String)}
  179. * @deprecated
  180. */
  181. @Deprecated
  182. public abstract String getProvider();
  183. /* ------------------------------------------------------------ */
  184. /**
  185. * @return The algorithm name, which if set is passed to
  186. * {@link SecureRandom#getInstance(String)} to obtain the {@link SecureRandom}
  187. * instance passed to {@link SSLContext#init(javax.net.ssl.KeyManager[], javax.net.ssl.TrustManager[], SecureRandom)}
  188. * @deprecated
  189. */
  190. @Deprecated
  191. public abstract String getSecureRandomAlgorithm();
  192. /* ------------------------------------------------------------ */
  193. /**
  194. * @return The algorithm name (default "SunX509") used by the {@link KeyManagerFactory}
  195. * @deprecated
  196. */
  197. @Deprecated
  198. public abstract String getSslKeyManagerFactoryAlgorithm();
  199. /* ------------------------------------------------------------ */
  200. /**
  201. * @return The algorithm name (default "SunX509") used by the {@link TrustManagerFactory}
  202. * @deprecated
  203. */
  204. @Deprecated
  205. public abstract String getSslTrustManagerFactoryAlgorithm();
  206. /* ------------------------------------------------------------ */
  207. /**
  208. * @return The file name or URL of the trust store location
  209. * @deprecated
  210. */
  211. @Deprecated
  212. public abstract String getTruststore();
  213. /* ------------------------------------------------------------ */
  214. /**
  215. * @return The type of the trust store (default "JKS")
  216. * @deprecated
  217. */
  218. @Deprecated
  219. public abstract String getTruststoreType();
  220. /* ------------------------------------------------------------ */
  221. /**
  222. * @param provider The SSL provider name, which if set is passed to
  223. * {@link SSLContext#getInstance(String, String)}
  224. * @deprecated
  225. */
  226. @Deprecated
  227. public abstract void setProvider(String provider);
  228. /* ------------------------------------------------------------ */
  229. /**
  230. * @param algorithm The algorithm name, which if set is passed to
  231. * {@link SecureRandom#getInstance(String)} to obtain the {@link SecureRandom}
  232. * instance passed to {@link SSLContext#init(javax.net.ssl.KeyManager[], javax.net.ssl.TrustManager[], SecureRandom)}
  233. * @deprecated
  234. */
  235. @Deprecated
  236. public abstract void setSecureRandomAlgorithm(String algorithm);
  237. /* ------------------------------------------------------------ */
  238. /**
  239. * @param algorithm The algorithm name (default "SunX509") used by
  240. * the {@link KeyManagerFactory}
  241. * @deprecated
  242. */
  243. @Deprecated
  244. public abstract void setSslKeyManagerFactoryAlgorithm(String algorithm);
  245. /* ------------------------------------------------------------ */
  246. /**
  247. * @param algorithm The algorithm name (default "SunX509") used by the {@link TrustManagerFactory}
  248. * @deprecated
  249. */
  250. @Deprecated
  251. public abstract void setSslTrustManagerFactoryAlgorithm(String algorithm);
  252. /* ------------------------------------------------------------ */
  253. /**
  254. * @param truststore The file name or URL of the trust store location
  255. * @deprecated
  256. */
  257. @Deprecated
  258. public abstract void setTruststore(String truststore);
  259. /* ------------------------------------------------------------ */
  260. /**
  261. * @param truststoreType The type of the trust store (default "JKS")
  262. * @deprecated
  263. */
  264. @Deprecated
  265. public abstract void setTruststoreType(String truststoreType);
  266. /* ------------------------------------------------------------ */
  267. /**
  268. * @param sslContext Set a preconfigured SSLContext
  269. * @deprecated
  270. */
  271. @Deprecated
  272. public abstract void setSslContext(SSLContext sslContext);
  273. /* ------------------------------------------------------------ */
  274. /**
  275. * @return The SSLContext
  276. * @deprecated
  277. */
  278. @Deprecated
  279. public abstract SSLContext getSslContext();
  280. /* ------------------------------------------------------------ */
  281. /**
  282. * @return True if SSL re-negotiation is allowed (default false)
  283. * @deprecated
  284. */
  285. @Deprecated
  286. public boolean isAllowRenegotiate();
  287. /* ------------------------------------------------------------ */
  288. /**
  289. * Set if SSL re-negotiation is allowed. CVE-2009-3555 discovered
  290. * a vulnerability in SSL/TLS with re-negotiation. If your JVM
  291. * does not have CVE-2009-3555 fixed, then re-negotiation should
  292. * not be allowed.
  293. * @param allowRenegotiate true if re-negotiation is allowed (default false)
  294. * @deprecated
  295. */
  296. @Deprecated
  297. public void setAllowRenegotiate(boolean allowRenegotiate);
  298. }