Interface SaslWrapper

All Known Implementing Classes:
AbstractDelegatingSaslClient, AbstractDelegatingSaslServer, AbstractSaslClient, AbstractSaslParticipant, AbstractSaslServer, AnonymousSaslClient, AnonymousSaslServer, AuthenticationContextSaslClient, AuthenticationContextSaslServer, ClientSaslWrapper, LocalUserClient, PrivilegedSaslClient, PrivilegedSaslServer, ServerSaslWrapper

public interface SaslWrapper
Author:
David M. Lloyd
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final SaslWrapper
    The identity wrapper which simply returns the same data that was passed in.
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
    unwrap(byte[] incoming, int offset, int len)
     
    byte[]
    wrap(byte[] outgoing, int offset, int len)
     
  • Field Details

    • IDENTITY

      static final SaslWrapper IDENTITY
      The identity wrapper which simply returns the same data that was passed in. If the data is of a different size then a copy is made.
  • Method Details