Uses of Class
javax.security.sasl.SaslException
-
Packages that use SaslException 软件包 描述 javax.security.sasl 包含用于支持SASL的类和接口。 -
-
Uses of SaslException in javax.security.sasl
Subclasses of SaslException in javax.security.sasl Modifier and Type Class 描述 class
AuthenticationException
由SASL机制实现引发此异常,以指示SASL交换机由于与认证有关的原因(例如无效的身份,密码或密钥)而失败。Methods in javax.security.sasl that throw SaslException Modifier and Type 方法 描述 static SaslClient
Sasl. createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)
使用提供的参数创建一个SaslClient
。SaslClient
SaslClientFactory. createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)
使用提供的参数创建SaslClient。static SaslServer
Sasl. createSaslServer(String mechanism, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)
为指定的机制创建一个SaslServer
。SaslServer
SaslServerFactory. createSaslServer(String mechanism, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)
使用提供的参数创建一个SaslServer
。void
SaslClient. dispose()
处理SaslClient可能使用的任何系统资源或安全敏感信息。void
SaslServer. dispose()
处理SaslServer可能使用的任何系统资源或安全敏感信息。byte[]
SaslClient. evaluateChallenge(byte[] challenge)
评估挑战数据并产生响应。byte[]
SaslServer. evaluateResponse(byte[] response)
评估响应数据并产生挑战。byte[]
SaslClient. unwrap(byte[] incoming, int offset, int len)
解开从服务器接收的字节数组。byte[]
SaslServer. unwrap(byte[] incoming, int offset, int len)
展开从客户端接收的字节数组。byte[]
SaslClient. wrap(byte[] outgoing, int offset, int len)
包装要发送到服务器的字节数组。byte[]
SaslServer. wrap(byte[] outgoing, int offset, int len)
包装要发送给客户端的字节数组。
-