static SaslClient |
Sasl.createSaslClient(String[] mechanisms,
String authorizationId,
String protocol,
String serverName,
Map<String,?> props,
CallbackHandler cbh) |
Creates a SaslClient using the parameters supplied.
|
SaslClient |
SaslClientFactory.createSaslClient(String[] mechanisms,
String authorizationId,
String protocol,
String serverName,
Map<String,?> props,
CallbackHandler cbh) |
Creates a SaslClient using the parameters supplied.
|
static SaslServer |
Sasl.createSaslServer(String mechanism,
String protocol,
String serverName,
Map<String,?> props,
CallbackHandler cbh) |
Creates a SaslServer for the specified mechanism.
|
SaslServer |
SaslServerFactory.createSaslServer(String mechanism,
String protocol,
String serverName,
Map<String,?> props,
CallbackHandler cbh) |
Creates a SaslServer using the parameters supplied.
|
void |
SaslClient.dispose() |
Disposes of any system resources or security-sensitive information
the SaslClient might be using.
|
void |
SaslServer.dispose() |
Disposes of any system resources or security-sensitive information
the SaslServer might be using.
|
byte[] |
SaslClient.evaluateChallenge(byte[] challenge) |
Evaluates the challenge data and generates a response.
|
byte[] |
SaslServer.evaluateResponse(byte[] response) |
Evaluates the response data and generates a challenge.
|
byte[] |
SaslClient.unwrap(byte[] incoming,
int offset,
int len) |
Unwraps a byte array received from the server.
|
byte[] |
SaslServer.unwrap(byte[] incoming,
int offset,
int len) |
Unwraps a byte array received from the client.
|
byte[] |
SaslClient.wrap(byte[] outgoing,
int offset,
int len) |
Wraps a byte array to be sent to the server.
|
byte[] |
SaslServer.wrap(byte[] outgoing,
int offset,
int len) |
Wraps a byte array to be sent to the client.
|