ch.ethz.ssh2.crypto.digest
Interface Digest

All Known Implementing Classes:
HMAC, MD5, SHA1

public interface Digest

Digest.

Version:
$Id: Digest.java,v 1.2 2005/08/11 12:47:29 cplattne Exp $
Author:
Christian Plattner, plattner@inf.ethz.ch

Method Summary
 void digest(byte[] out)
           
 void digest(byte[] out, int off)
           
 int getDigestLength()
           
 void reset()
           
 void update(byte b)
           
 void update(byte[] b)
           
 void update(byte[] b, int off, int len)
           
 

Method Detail

getDigestLength

public int getDigestLength()

update

public void update(byte b)

update

public void update(byte[] b)

update

public void update(byte[] b,
                   int off,
                   int len)

reset

public void reset()

digest

public void digest(byte[] out)

digest

public void digest(byte[] out,
                   int off)