DEBSOURCES
Skip Quicknav
sources / ruby-digest-crc / 0.4.0-2 / lib / digest / crc16_usb.rb
1234567891011121314
require 'digest/crc16' module Digest # # Implements the CRC16 USB algorithm. # class CRC16USB < CRC16 INIT_CRC = 0xffff XOR_MASK = 0xffff end end