Class: Digest::CRC32Jam

Inherits:
CRC32
  • Object
show all
Defined in:
lib/digest/crc32_jam.rb

Overview

Implements the CRC32 Jam algorithm.

Constant Summary collapse

INIT_XOR =
0xffffffff
INIT_CRC =
0x0 ^ INIT_XOR
XOR_MASK =
0x00000000

Constants inherited from CRC32

Digest::CRC32::TABLE, Digest::CRC32::WIDTH

Constants inherited from CRC

Digest::CRC::TABLE, Digest::CRC::WIDTH

Method Summary

Methods inherited from CRC32

pack, #update

Methods inherited from CRC

#<<, #block_length, #checksum, checksum, #digest_length, #finish, #initialize, pack, #reset, #update

Constructor Details

This class inherits a constructor from Digest::CRC