class Digest::CRC5
Implements the CRC5
algorithm.
Constants
- CRC_MASK
- INIT_CRC
- REFLECT_INPUT
- TABLE
-
Generated by ‘./pycrc.py –algorithm=table-driven –model=crc-5 –generate=c`
- WIDTH
- XOR_MASK
Public Class Methods
Source
# File lib/digest/crc5.rb, line 42 def initialize @crc_mask = self.class.const_get(:CRC_MASK) super end
Initializes the CRC5
instance.
Calls superclass method
Digest::CRC::new