Lfsr Shopping
Feedback
Website Links For
Linear
 

Information About

Lfsr




The only linear functions of single bits are xor and inverse-xor; thus it is a shift register whose input bit is driven by the Exclusive-or (xor) of some bits of the overall shift register value.

The initial value of the LFSR is called the seed, and because the operation of the register is deterministic, the sequence of values produced by the register is completely determined by its current (or previous) state. Likewise, because the register has a finite number of possible states, it must eventually enter a repeating cycle. However, a LFSR with a well-chosen feedback function can produce a sequence of bits which appears random and which has a very long cycle.

Applications of LFSRs include generating Pseudo-random Numbers , Pseudo-noise Sequences , fast digital counters, and whitening sequences. Both hardware and software implementations of LFSRs are common.


HOW IT WORKS


The list of the bits positions that affect the next state is called the tap sequence. In the diagram below, the sequence is {Link without Title} .

  • The outputs that influence the input are called ''taps''.

  • A maximal LFSR produces an N-sequence (i.e. cycles through all possible states within the shift register except all zero bits), unless it contains all zeros, in which case it will never change.


The sequence of numbers generated by a LFSR can be considered a Binary Numeral System just as valid as Gray Code or the Natural Binary Code .


The tap sequence of an LFSR can be represented as a Polynomial Mod 2. This means that the coefficients of the polynomial must be 1's or 0's. This is called the feedback polynomial or characteristic polynomial. For example, if the taps are at the 16th, 14th, 13th and 11th bits (as below), the resulting LFSR polynomial is
x^{11} + x^{13} + x^{14} + x^{16} + 1


The 'one' in the polynomial does not correspond to a tap. The powers of the terms represent the tapped bits, counting from the left.





OUTPUT STREAM PROPERTIES


  • Ones and zeroes occur in 'runs'. The output stream 000000, for example consists of five runs of lengths 1,2,1,1,2, in order. In one period of a maximal LFSR, 2^{n-1} runs occurs (for example, a six bit LFSR will have 32 runs). Exactly 1/2 of these runs will be one bit long, 1/4 will be two bits long, up to a single run of zeroes n-1 bits long, and a single run of ones n bits long. This same property is statistically expected in a truly random sequence.

  • LFSR outputs streams are Deterministic . If you know the present state, you can predict the next state. This is not possible with truly random events such as nuclear decay.



APPLICATIONS

LFSR's can be implemented in hardware, and this makes them useful in applications that require very fast generation of a pseudo-random sequence, such as Direct-sequence Spread Spectrum radio.

The Global Positioning System uses a LFSR to rapidly transmit a sequence that indicates high-precision relative time offsets.


A DROP IN REPLACEMENT FOR GRAY CODE COUNTERS

Some applications need to mark individual locations along a certain distance with unique values. For example, most Tape Measure s mark each inch or centimeter with a unique number using the Decimal numeral system. When computer index or framing locations need to be machine-readable, they are often marked using a LFSR sequence, because LFSR Counter s are simpler and faster than any other kind of binary counter. LFSRs are faster than the natural Binary counters or Gray Code counters. Given an output sequence you can construct a LFSR of minimal size by using the Berlekamp-Massey Algorithm .


GALOIS LFSRS

A Galois LFSR, or a LFSR in Galois configuration is a variation on typical LFSR design.

In Galois configuration, when the system is clocked, bits that are not taps are shifted as normal. The taps, on the other hand, are XOR'd with the new output, which also becomes the new input.

  • Galois LFSRs do not concatenate every tap to produce the new input (the XOR'ing is done within the LFSR and no XOR's are run in serial, therefore the propagation times are reduced to that of one XOR rather than a whole chain), thus it is possible for each tap to be computed in parallel, increasing the speed of execution.






USES IN CRYPTOGRAPHY

LFSRs have long been used as a Pseudo-random Number Generator for use in Stream Cipher s (especially in Military cryptography), due to the ease of construction from simple Electromechanical or Electronic Circuits , long Period s, and very uniformly Distributed outputs. However the outputs of LFSRs are completely Linear , leading to fairly easy Cryptanalysis .

Three general methods are employed to reduce this problem in LFSR based stream ciphers
  • Non-linear combination of several Bit s from the LFSR State ;

  • Non-linear combination of the outputs of two or more LFSRs; or

  • Irregular clocking of the LFSR.


Important LFSR-based stream ciphers include A5/1 , A5/2 , E0 and the Shrinking Generator .


USES IN DIGITAL BROADCASTING AND COMMUNICATIONS

In order to keep digital transmissions from forming latent energy patterns that may disrupt other digital or analog transmissions -- linear feedback registers are used to create more randomness in the outgoing digital bitstream (this technique is referred to as Scrambling ).

Digital broadcasting systems that use linear feedback registers
  • NICAM (digital audio system for television)

  • ATSC (HDTV transmission system -- North America)

  • DVB-T (HDTV transmission system -- Europe, Australasia)


Other digital communications systems using LFSR:

  • IBS (INTELSAT business service)

  • IDR (Intermedaite Data Rate service)

  • Data transfer over PSTN (according to the ITU-T V recommendations)



SEE ALSO



EXTERNAL LINKS