SSLProtocol.java 392 B

123456789101112131415
  1. package de.tudarmstadt.informatik.hostage.protocol;
  2. import javax.net.ssl.SSLContext;
  3. /**
  4. * Interface for ssl protocols that are used by hostage
  5. * @author Wulf Pfeiffer
  6. */
  7. public interface SSLProtocol extends Protocol {
  8. /**
  9. * Returns the initialized SSL Context with the KeyManager and TrustManager that will be used
  10. * @return the used SSLContext
  11. */
  12. SSLContext getSSLContext();
  13. }