Class

play.api.libs.ws.ssl

ConfigSSLContextBuilder

Related Doc: package ssl

Permalink

class ConfigSSLContextBuilder extends SSLContextBuilder

Creates an SSL context builder from info objects.

Source
SSLContextBuilder.scala
Linear Supertypes
SSLContextBuilder, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ConfigSSLContextBuilder
  2. SSLContextBuilder
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ConfigSSLContextBuilder(info: SSLConfig, keyManagerFactory: KeyManagerFactoryWrapper, trustManagerFactory: TrustManagerFactoryWrapper)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. lazy val algorithmChecker: AlgorithmChecker

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def build(): SSLContext

    Permalink
  7. def buildCompositeKeyManager(keyManagerConfig: KeyManagerConfig, algorithmChecker: AlgorithmChecker): CompositeX509KeyManager

    Permalink
  8. def buildCompositeTrustManager(trustManagerInfo: TrustManagerConfig, revocationEnabled: Boolean, revocationLists: Option[Seq[CRL]], algorithmChecker: AlgorithmChecker): CompositeX509TrustManager

    Permalink
  9. def buildKeyManager(ksc: KeyStoreConfig, algorithmChecker: AlgorithmChecker): X509KeyManager

    Permalink

    Builds a key manager from a keystore, using the KeyManagerFactory.

  10. def buildSSLContext(protocol: String, keyManagers: Seq[KeyManager], trustManagers: Seq[TrustManager], secureRandom: Option[SecureRandom]): SSLContext

    Permalink
  11. def buildTrustManager(tsc: TrustStoreConfig, revocationEnabled: Boolean, revocationLists: Option[Seq[CRL]], algorithmChecker: AlgorithmChecker): X509TrustManager

    Permalink

    Builds trust managers, using a TrustManagerFactory internally.

  12. def buildTrustManagerParameters(trustStore: KeyStore, revocationEnabled: Boolean, revocationLists: Option[Seq[CRL]], algorithmChecker: AlgorithmChecker): CertPathTrustManagerParameters

    Permalink
  13. def certificateRevocationList(sslConfig: SSLConfig): Option[Seq[CRL]]

    Permalink
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  17. def fileBuilder(storeType: String, filePath: String, password: Option[Array[Char]]): KeyStoreBuilder

    Permalink
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def generateCRL(inputStream: InputStream): CRL

    Permalink
  20. def generateCRLFromFile(file: File): CRL

    Permalink
  21. def generateCRLFromURL(url: URL): CRL

    Permalink
  22. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. lazy val keyManagers: Seq[KeyManager]

    Permalink
  26. lazy val keySizeConstraints: Set[AlgorithmConstraint]

    Permalink
  27. def keyStoreBuilder(ksc: KeyStoreConfig): KeyStoreBuilder

    Permalink
  28. val logger: org.slf4j.Logger

    Permalink
    Attributes
    protected
  29. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. lazy val revocationLists: Option[Seq[CRL]]

    Permalink
  33. lazy val signatureConstraints: Set[AlgorithmConstraint]

    Permalink
  34. def stringBuilder(data: String): KeyStoreBuilder

    Permalink
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  36. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  37. lazy val trustManagers: Seq[TrustManager]

    Permalink
  38. def trustStoreBuilder(tsc: TrustStoreConfig): KeyStoreBuilder

    Permalink
  39. def validateStore(store: KeyStore, algorithmChecker: AlgorithmChecker): Unit

    Permalink

    Tests each trusted certificate in the store, and warns if the certificate is not valid.

    Tests each trusted certificate in the store, and warns if the certificate is not valid. Does not throw exceptions.

  40. def validateStoreContainsPrivateKeys(ksc: KeyStoreConfig, keyStore: KeyStore): Boolean

    Permalink

    Validates that a key store (as opposed to a trust store) contains private keys for client authentication.

  41. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. def warnOnPKCS12EmptyPasswordBug(ksc: KeyStoreConfig): Boolean

    Permalink

    Returns true if the keystore should throw an exception as a result of the JSSE bug 6879539, false otherwise.

Inherited from SSLContextBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped