Uses of Interface
net.sf.jazzlib.Checksum

Packages that use Checksum
net.sf.jazzlib   
 

Uses of Checksum in net.sf.jazzlib
 

Classes in net.sf.jazzlib that implement Checksum
 class Adler32
          Computes Adler32 checksum for a stream of data.
 class CRC32
          Computes CRC32 data checksum of a data stream.
 

Methods in net.sf.jazzlib that return Checksum
 Checksum CheckedOutputStream.getChecksum()
          Returns the Checksum object used.
 Checksum CheckedInputStream.getChecksum()
          Returns the Checksum object used.
 

Constructors in net.sf.jazzlib with parameters of type Checksum
CheckedInputStream(java.io.InputStream in, Checksum sum)
          Creates a new CheckInputStream on top of the supplied OutputStream using the supplied Checksum.
CheckedOutputStream(java.io.OutputStream out, Checksum cksum)
          Creates a new CheckInputStream on top of the supplied OutputStream using the supplied Checksum.