Package akka.stream

Class TLSClientAuth

  • Direct Known Subclasses:
    TLSClientAuth.Need$, TLSClientAuth.None$, TLSClientAuth.Want$

    public abstract class TLSClientAuth
    extends java.lang.Object
    An SSLEngine can either demand, allow or ignore its peer’s authentication (via certificates), where Need will fail the handshake if the peer does not provide valid credentials, Want allows the peer to send credentials and verifies them if provided, and None disables peer certificate verification.

    See the documentation for SSLEngine::setWantClientAuth for more information.