For the latest news and information visit
The GNU Crypto project

gnu.crypto.sasl.anonymous
Class AnonymousServer

java.lang.Object
  |
  +--gnu.crypto.sasl.ServerMechanism
        |
        +--gnu.crypto.sasl.anonymous.AnonymousServer
All Implemented Interfaces:
SaslServer

public class AnonymousServer
extends ServerMechanism
implements SaslServer

The ANONYMOUS server-side mechanism.


Field Summary
 
Fields inherited from class gnu.crypto.sasl.ServerMechanism
authenticator, authorizationID, channelBinding, complete, handler, mechanism, properties, protocol, serverName, state
 
Constructor Summary
AnonymousServer()
           
 
Method Summary
 byte[] evaluateResponse(byte[] response)
          Evaluates the response data and generates a challenge.
protected  void initMechanism()
           
protected  void resetMechanism()
           
 
Methods inherited from class gnu.crypto.sasl.ServerMechanism
dispose, engineUnwrap, engineWrap, getAuthorizationID, getMechanismName, getNegotiatedMaxBuffer, getNegotiatedPolicyForwardSecrecy, getNegotiatedPolicyNoActive, getNegotiatedPolicyNoAnonymous, getNegotiatedPolicyNoDictionary, getNegotiatedPolicyNoPlainText, getNegotiatedPolicyPassCredentials, getNegotiatedProperty, getNegotiatedQOP, getNegotiatedRawSendSize, getNegotiatedServerAuth, getNegotiatedStrength, getReuse, init, isComplete, reset, unwrap, wrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.security.sasl.SaslServer
dispose, getAuthorizationID, getMechanismName, getNegotiatedProperty, isComplete, unwrap, wrap
 

Constructor Detail

AnonymousServer

public AnonymousServer()
Method Detail

initMechanism

protected void initMechanism()
                      throws SaslException
Specified by:
initMechanism in class ServerMechanism
SaslException

resetMechanism

protected void resetMechanism()
                       throws SaslException
Specified by:
resetMechanism in class ServerMechanism
SaslException

evaluateResponse

public byte[] evaluateResponse(byte[] response)
                        throws SaslException
Description copied from interface: SaslServer
Evaluates the response data and generates a challenge. If a response is received from the client during the authentication process, this method is called to prepare an appropriate next challenge to submit to the client. The challenge is null if the authentication has succeeded and no more challenge data is to be sent to the client. It is non-null if the authentication must be continued by sending a challenge to the client, or if the authentication has succeeded but challenge data needs to be processed by the client. SaslServer.isComplete() should be called after each call to evaluateResponse(),to determine if any further response is needed from the client.

Specified by:
evaluateResponse in interface SaslServer
Specified by:
evaluateResponse in class ServerMechanism
Parameters:
response - the non-null (but possibly empty) response sent by the client.
Returns:
the possibly null challenge to send to the client. It is null if the authentication has succeeded and there is no more challenge data to be sent to the client.
Throws:
SaslException - if an error occurred while processing the response or generating a challenge.

For the latest news and information visit
The GNU Crypto project

Copyright © 2001, 2002, 2003, 2004 Free Software Foundation, Inc.