Class FastCRC24


  • public class FastCRC24
    extends CRC24
    • Constructor Summary

      Constructors 
      Constructor Description
      FastCRC24()
      Fast CRC-24 implementation using a lookup table to handle multiple bits at a time.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void update​(int b)  
      void update3​(byte[] buf, int off)  
      • Methods inherited from class java.lang.Object

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

      • FastCRC24

        public FastCRC24()
        Fast CRC-24 implementation using a lookup table to handle multiple bits at a time.

        Compare: Sarwate, Dilip V. "Computation of cyclic redundancy checks via table look-up."

    • Method Detail

      • update

        public void update​(int b)
        Overrides:
        update in class CRC24
      • update3

        public void update3​(byte[] buf,
                            int off)
        Overrides:
        update3 in class CRC24