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 变量和类型 类 描述 classAuthenticationExceptionSASL机制实现抛出此异常,以指示SASL交换由于与身份验证相关的原因(例如无效的身份,密码或密钥)而失败。Methods in javax.security.sasl that throw SaslException 变量和类型 方法 描述 static SaslClientSasl. createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)使用提供的参数创建SaslClient。SaslClientSaslClientFactory. createSaslClient(String[] mechanisms, String authorizationId, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)使用提供的参数创建SaslClient。static SaslServerSasl. createSaslServer(String mechanism, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)为指定的机制创建SaslServer。SaslServerSaslServerFactory. createSaslServer(String mechanism, String protocol, String serverName, Map<String,?> props, CallbackHandler cbh)使用提供的参数创建SaslServer。voidSaslClient. dispose()处置SaslClient可能正在使用的任何系统资源或安全敏感信息。voidSaslServer. 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)包装要发送到客户端的字节数组。
-