Codebase list cyrus-sasl2 / debian/2.1.26.dfsg1-7 java / CyrusSasl / SaslClient.java
debian/2.1.26.dfsg1-7

Tree @debian/2.1.26.dfsg1-7 (Download .tar.gz)

SaslClient.java @debian/2.1.26.dfsg1-7raw · history · blame

package CyrusSasl;

import java.io.*;

public interface SaslClient
{
    public byte[]
	evaluateChallenge(byte[] challenge)
	throws SaslException;


    public boolean hasInitialResponse();
	
    public boolean isComplete();

    public String getMechanismName();

    public InputStream getInputStream(InputStream source) throws IOException;

    public OutputStream getOutputStream(OutputStream dest) throws IOException;


}