Package lzma.sdk

Class CRC


  • public class CRC
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) int _value  
      static int[] Table  
    • Constructor Summary

      Constructors 
      Constructor Description
      CRC()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getDigest()  
      void init()  
      void update​(byte[] data)  
      void update​(byte[] data, int offset, int size)  
      void updateByte​(int b)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • Table

        public static int[] Table
      • _value

        int _value
    • Constructor Detail

      • CRC

        public CRC()
    • Method Detail

      • init

        public void init()
      • update

        public void update​(byte[] data,
                           int offset,
                           int size)
      • update

        public void update​(byte[] data)
      • updateByte

        public void updateByte​(int b)
      • getDigest

        public int getDigest()