com.jcraft.jsch
Interface MAC

All Known Implementing Classes:
HMACMD5, HMACMD596, HMACSHA1, HMACSHA196

public interface MAC


Method Summary
 byte[] doFinal()
           
 int getBlockSize()
           
 java.lang.String getName()
           
 void init(byte[] key)
           
 void update(byte[] foo, int start, int len)
           
 void update(int foo)
           
 

Method Detail

getName

public java.lang.String getName()

getBlockSize

public int getBlockSize()

init

public void init(byte[] key)
          throws java.lang.Exception
Throws:
java.lang.Exception

update

public void update(byte[] foo,
                   int start,
                   int len)

update

public void update(int foo)

doFinal

public byte[] doFinal()