File: SaslClient.java

package info (click to toggle)
cyrus-sasl2 2.1.23.dfsg1-7
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 8,692 kB
  • ctags: 7,265
  • sloc: ansic: 50,844; sh: 12,869; java: 1,614; xml: 1,498; makefile: 649; perl: 11
file content (23 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;


}