Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 335 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 335 Bytes

LFSR

Generic 32-bit LFSR (Linear Feedback Shift Register) reference implementation

Two implementations are provided and tested against each other:

  1. Brute-force implementation, see class BruteforceLfsr32.
  2. Matrix style implementation, suitable for parallel computation. See class MatrixLfsr32.

LFSR reference: LFSR