Update for 15-12-21 14:30

This commit is contained in:
Tyler Perkins 2021-12-15 14:30:01 -05:00
parent 7fe58fc451
commit b1953bf0ae

View File

@ -13,3 +13,8 @@ The maximum period for a _n_ bit shift register is
A *tap* is where a bit is read and fed back into itself.
== Reverse Engineering ==
An LFSR generates values based on a linear expression modulous 2, therefore we
can reverse engineer the state of the LFSR based on a sequence we are given.
This can be done using the Berlekamp-Massey algorithm.