Package pixy.util.zip

Interface Checksum

All Known Implementing Classes:
CRC32

public interface Checksum
Interface to be implemented by CRC32 and Adler32 etc.
  • Method Summary

    Modifier and Type Method Description
    long getValue()  
    void reset()  
    void update​(byte[] b, int offset, int length)  
    void update​(int b)  
  • Method Details

    • getValue

      long getValue()
    • update

      void update​(int b)
    • update

      void update​(byte[] b, int offset, int length)
    • reset

      void reset()