<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://en.zaoniao.it/index.php?action=history&amp;feed=atom&amp;title=Linear-feedback_shift_register</id>
	<title>Linear-feedback shift register - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://en.zaoniao.it/index.php?action=history&amp;feed=atom&amp;title=Linear-feedback_shift_register"/>
	<link rel="alternate" type="text/html" href="http://en.zaoniao.it/index.php?title=Linear-feedback_shift_register&amp;action=history"/>
	<updated>2026-05-15T21:29:19Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>http://en.zaoniao.it/index.php?title=Linear-feedback_shift_register&amp;diff=2444&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;In computing, a '''linear-feedback shift register''' (LFSR) is a shift register whose input bit is a linear function of its previous state...&quot;</title>
		<link rel="alternate" type="text/html" href="http://en.zaoniao.it/index.php?title=Linear-feedback_shift_register&amp;diff=2444&amp;oldid=prev"/>
		<updated>2019-03-22T03:49:38Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;In &lt;a href=&quot;/index.php?title=Computing&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Computing (page does not exist)&quot;&gt;computing&lt;/a&gt;, a &amp;#039;&amp;#039;&amp;#039;linear-feedback shift register&amp;#039;&amp;#039;&amp;#039; (LFSR) is a &lt;a href=&quot;/index.php?title=Shift_register&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Shift register (page does not exist)&quot;&gt;shift register&lt;/a&gt; whose input bit is a &lt;a href=&quot;/index.php?title=Linear&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Linear (page does not exist)&quot;&gt;linear function&lt;/a&gt; of its previous state...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;In [[computing]], a '''linear-feedback shift register''' (LFSR) is a [[shift register]] whose input bit is a [[Linear#Boolean functions|linear function]] of its previous state.&lt;br /&gt;
&lt;br /&gt;
The most commonly used linear function of single bits is [[exclusive-or]] (XOR). Thus, an LFSR is most often a shift register whose input bit is driven by the XOR of some bits of the overall shift register value.&lt;br /&gt;
&lt;br /&gt;
The initial value of the LFSR is called the seed, and because the operation of the register is deterministic, the stream 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, an LFSR with a [[Primitive polynomial (field theory)|well-chosen feedback function]] can produce a sequence of bits that appears random and has a [[Maximal length sequence|very long cycle]].&lt;br /&gt;
&lt;br /&gt;
Applications of LFSRs include generating [[Pseudorandomness|pseudo-random numbers]], [[Pseudorandom noise|pseudo-noise sequences]], fast digital counters, and [[whitening sequences]]. Both hardware and software implementations of LFSRs are common.&lt;br /&gt;
&lt;br /&gt;
The mathematics of a [[cyclic redundancy check]], used to provide a quick check against transmission errors, are closely related to those of an LFSR.&lt;br /&gt;
&lt;br /&gt;
== Fibonacci LFSRs ==&lt;br /&gt;
The bit positions that affect the next state are called the taps. In the diagram the taps are [16,14,13,11]. The rightmost bit of the LFSR is called the output bit. The taps are XOR'd sequentially with the output bit and then fed back into the leftmost bit. The sequence of bits in the rightmost position is called the output stream.&lt;br /&gt;
* The bits in the LFSR state that influence the input are called ''taps''.&lt;br /&gt;
* A maximum-length LFSR produces an [[maximum length sequence|m-sequence]] (i.e., it cycles through all possible 2&amp;lt;sup&amp;gt;''n''&amp;lt;/sup&amp;gt;&amp;amp;nbsp;−&amp;amp;nbsp;1 states within the shift register except the state where all bits are zero), unless it contains all zeros, in which case it will never change.&lt;br /&gt;
* As an alternative to the XOR-based feedback in an LFSR, one can also use [[XNOR]]. This function is an [[affine transformation|affine map]], not strictly a [[linear map]], but it results in an equivalent polynomial counter whose state is the complement of the state of an LFSR. A state with all ones is illegal when using an XNOR feedback, in the same way as a state with all zeroes is illegal when using XOR. This state is considered illegal because the counter would remain &amp;quot;locked-up&amp;quot; in this state.&lt;br /&gt;
&lt;br /&gt;
The sequence of numbers generated by an LFSR or its XNOR counterpart can be considered a [[binary numeral system]] just as valid as [[Gray code]] or the natural binary code.&lt;br /&gt;
&amp;lt;!-- perhaps this statement should be moved to the [[binary numeral system]] article ? --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The arrangement of taps for feedback in an LFSR can be expressed in [[finite field arithmetic]] as a [[polynomial]] [[modular arithmetic|mod]] 2. This means that the coefficients of the polynomial must be 1s or 0s. This is called the feedback polynomial or reciprocal characteristic polynomial. For example, if the taps are at the 16th, 14th, 13th and 11th bits (as shown), the feedback polynomial is&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;x^{16} + x^{14} + x^{13} + x^{11} + 1.&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;one&amp;quot; in the polynomial does not correspond to a tap – it corresponds to the input to the first bit (i.e. ''x''&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;, which is equivalent to 1). The powers of the terms represent the tapped bits, counting from the left. The first and last bits are always connected as an input and output tap respectively.&lt;br /&gt;
&lt;br /&gt;
The LFSR is maximal-length if and only if the corresponding feedback polynomial is [[primitive polynomial (field theory)|primitive]]. This means that the following conditions are necessary (but not sufficient):&lt;br /&gt;
* The number of taps is [[Even and odd numbers|even]].&lt;br /&gt;
* The set of taps is [[coprime integers#Coprimality in sets|setwise co-prime]]; i.e., there must be no divisor other than 1 common to all taps.&lt;br /&gt;
&lt;br /&gt;
Tables of primitive polynomials from which maximum-length LFSRs can be constructed are given below and in the references.&lt;br /&gt;
&lt;br /&gt;
There can be more than one maximum-length tap sequence for a given LFSR length. Also, once one maximum-length tap sequence has been found, another automatically follows. If the tap sequence in an ''n''-bit LFSR is , where the 0 corresponds to the ''x''&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;&amp;amp;nbsp;=&amp;amp;nbsp;1 term, then the corresponding &amp;quot;mirror&amp;quot; sequence is . So the tap sequence has as its counterpart . Both give a maximum-length sequence.&lt;br /&gt;
&lt;br /&gt;
An example in [[C_(programming_language)|C]] is below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
# include &amp;lt;stdint.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
int main(void)&lt;br /&gt;
{&lt;br /&gt;
 uint16_t start_state = 0xACE1u; /* Any nonzero start state will work. */&lt;br /&gt;
 uint16_t lfsr = start_state;&lt;br /&gt;
 uint16_t bit; /* Must be 16bit to allow bit&amp;lt;&amp;lt;15 later in the code */&lt;br /&gt;
 unsigned period = 0;&lt;br /&gt;
&lt;br /&gt;
 do&lt;br /&gt;
 {&lt;br /&gt;
 /* taps: 16 14 13 11; feedback polynomial: x^16 + x^14 + x^13 + x^11 + 1 */&lt;br /&gt;
 bit = ((lfsr &amp;gt;&amp;gt; 0) ^ (lfsr &amp;gt;&amp;gt; 2) ^ (lfsr &amp;gt;&amp;gt; 3) ^ (lfsr &amp;gt;&amp;gt; 5) ) &amp;amp; 1;&lt;br /&gt;
 lfsr = (lfsr &amp;gt;&amp;gt; 1) | (bit &amp;lt;&amp;lt; 15);&lt;br /&gt;
 ++period;&lt;br /&gt;
 } while (lfsr != start_state);&lt;br /&gt;
&lt;br /&gt;
 return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This LFSR configuration is also known as '''standard''', '''many-to-one''' or '''external XOR gates'''. The alternative Galois configuration is described in the next section.&lt;br /&gt;
&lt;br /&gt;
== Galois LFSRs ==&lt;br /&gt;
Named after the French mathematician [[Évariste Galois]], an LFSR in Galois configuration, which is also known as '''modular''', '''internal XORs''', or '''one-to-many LFSR''', is an alternate structure that can generate the same output stream as a conventional LFSR (but offset in time). In the Galois configuration, when the system is clocked, bits that are not taps are shifted one position to the right unchanged. The taps, on the other hand, are XORed with the output bit before they are stored in the next position. The new output bit is the next input bit. The effect of this is that when the output bit is zero, all the bits in the register shift to the right unchanged, and the input bit becomes zero. When the output bit is one, the bits in the tap positions all flip (if they are 0, they become 1, and if they are 1, they become 0), and then the entire register is shifted to the right and the input bit becomes 1.&lt;br /&gt;
&lt;br /&gt;
To generate the same output stream, the order of the taps is the ''counterpart'' (see above) of the order for the conventional LFSR, otherwise the stream will be in reverse. Note that the internal state of the LFSR is not necessarily the same. The Galois register shown has the same output stream as the Fibonacci register in the first section. A time offset exists between the streams, so a different startpoint will be needed to get the same output each cycle.&lt;br /&gt;
* Galois LFSRs do not concatenate every tap to produce the new input (the XORing is done within the LFSR, and no XOR gates 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.&lt;br /&gt;
* In a software implementation of an LFSR, the Galois form is more efficient, as the XOR operations can be implemented a word at a time: only the output bit must be examined individually.&lt;br /&gt;
&lt;br /&gt;
Below is a [[C (programming language)|C]] code example for the 16-bit maximal-period Galois LFSR example in the figure:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
# include &amp;lt;stdint.h&amp;gt;&lt;br /&gt;
int main(void) {&lt;br /&gt;
 uint16_t start_state = 0xACE1u; /* Any nonzero start state will work. */&lt;br /&gt;
 uint16_t lfsr = start_state;&lt;br /&gt;
 unsigned period = 0;&lt;br /&gt;
&lt;br /&gt;
 do {&lt;br /&gt;
 unsigned lsb = lfsr &amp;amp; 1; /* Get LSB (i.e., the output bit). */&lt;br /&gt;
 lfsr &amp;gt;&amp;gt;= 1; /* Shift register */&lt;br /&gt;
 if (lsb) /* If the output bit is 1, apply toggle mask. */&lt;br /&gt;
 lfsr ^= 0xB400u;&lt;br /&gt;
 ++period;&lt;br /&gt;
 } while (lfsr != start_state);&lt;br /&gt;
&lt;br /&gt;
 return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that&lt;br /&gt;
&amp;lt;source lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
 if (lsb)&lt;br /&gt;
 lfsr ^= 0xB400u;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
can also be written as&lt;br /&gt;
&amp;lt;source lang=&amp;quot;c&amp;quot;&amp;gt;&lt;br /&gt;
 lfsr ^= (-lsb) &amp;amp; 0xB400u;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
which may produce more efficient code on some compilers.&lt;br /&gt;
&amp;lt;!-- NOTE: The C standard guarantees that arithmetic operations on unsigned types are computed modulo 2^bitsize (i.e., as if in two's complement arithmetic). Thus, the &amp;quot;-lsb&amp;quot; is fully portable and gives the intended result even if the target environment uses natively a different integer representation. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Non-binary Galois LFSR ===&lt;br /&gt;
Binary Galois LFSRs like the ones shown above can be generalized to any ''q''-ary alphabet {0, 1, ..., ''q''&amp;amp;nbsp;−&amp;amp;nbsp;1} (e.g., for binary, ''q'' = 2, and the alphabet is simply {0, 1}). In this case, the exclusive-or component is generalized to addition [[Modular arithmetic|modulo]]-''q'' (note that XOR is addition modulo 2), and the feedback bit (output bit) is multiplied (modulo-''q'') by a ''q''-ary value, which is constant for each specific tap point. Note that this is also a generalization of the binary case, where the feedback is multiplied by either 0 (no feedback, i.e., no tap) or 1 (feedback is present). Given an appropriate tap configuration, such LFSRs can be used to generate [[Finite field|Galois fields]] for arbitrary prime values of ''q''.&lt;br /&gt;
&lt;br /&gt;
== Some polynomials for maximal LFSRs ==&lt;br /&gt;
The following table lists maximal-length polynomials for shift-register lengths up to 19. Note that more than one maximal-length polynomial may exist for any given shift-register length. A list of alternative maximal-length polynomials for shift-register lengths 4–32 (beyond which it becomes unfeasible to store or transfer them) can be found here: http://www.ece.cmu.edu/~koopman/lfsr/index.html.&lt;br /&gt;
&amp;lt;!-- Since alternative polynomials are possible I have verified independently those tabulated here. ~~~~ --&amp;gt;&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:right&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Bits&lt;br /&gt;
!Feedback polynomial&lt;br /&gt;
!Period&lt;br /&gt;
|-&lt;br /&gt;
!''n''&lt;br /&gt;
|&lt;br /&gt;
!&amp;lt;math&amp;gt;2^n - 1&amp;lt;/math&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! 2&lt;br /&gt;
|&amp;lt;math&amp;gt;x^2 + x + 1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 3&lt;br /&gt;
|-&lt;br /&gt;
! 3&lt;br /&gt;
|&amp;lt;math&amp;gt;x^3 + x^2 + 1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 7&lt;br /&gt;
|-&lt;br /&gt;
! 4&lt;br /&gt;
|&amp;lt;math&amp;gt;x^4 + x^3 + 1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 15&lt;br /&gt;
|-&lt;br /&gt;
! 5&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 5 }+x^{ 3 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 31&lt;br /&gt;
|-&lt;br /&gt;
! 6&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 6 }+x^{ 5 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 63&lt;br /&gt;
|-&lt;br /&gt;
! 7&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 7 }+x^{ 6 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 127&lt;br /&gt;
|-&lt;br /&gt;
! 8&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 8 }+x^{ 6 }+x^{ 5 }+x^{ 4 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 255&lt;br /&gt;
|-&lt;br /&gt;
! 9&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 9 }+x^{ 5 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 511&lt;br /&gt;
|-&lt;br /&gt;
! 10&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 10 }+x^{ 7 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 1023&lt;br /&gt;
|-&lt;br /&gt;
! 11&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 11 }+x^{ 9 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 2047&lt;br /&gt;
|-&lt;br /&gt;
! 12&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 12 }+x^{ 11 }+x^{ 10 }+x^{ 4 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 4095&lt;br /&gt;
|-&lt;br /&gt;
! 13&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 13 }+x^{ 12 }+x^{ 11 }+x^{ 8 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 8191&lt;br /&gt;
|-&lt;br /&gt;
! 14&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 14 }+x^{ 13 }+x^{ 12 }+x^{ 2 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 16383&lt;br /&gt;
|-&lt;br /&gt;
! 15&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 15 }+x^{ 14 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 32767&lt;br /&gt;
|-&lt;br /&gt;
! 16&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 16 }+x^{ 15 }+x^{ 13 }+x^{ 4 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 65535&lt;br /&gt;
|-&lt;br /&gt;
! 17&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 17 }+x^{ 14 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 131071&lt;br /&gt;
|-&lt;br /&gt;
! 18&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 18 }+x^{ 11 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 262143&lt;br /&gt;
|-&lt;br /&gt;
! 19&lt;br /&gt;
|&amp;lt;math&amp;gt;x^{ 19 }+x^{ 18 }+x^{ 17 }+x^{ 14 }+1&amp;lt;/math&amp;gt;&lt;br /&gt;
| 524287&lt;br /&gt;
|-&lt;br /&gt;
!20–168&lt;br /&gt;
|[http://www.xilinx.com/support/documentation/application_notes/xapp052.pdf]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
!2–786,&amp;lt;br&amp;gt;1024,&amp;lt;br&amp;gt;2048,&amp;lt;br&amp;gt;4096&lt;br /&gt;
|[https://web.archive.org/web/20161007061934/http://courses.cse.tamu.edu/csce680/walker/lfsr_table.pdf]&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Output-stream properties ==&lt;br /&gt;
* Ones and zeroes occur in &amp;quot;runs&amp;quot;. The output stream 1110010, for example, consists of four runs of lengths 3, 2, 1, 1, in order. In one period of a maximal LFSR, 2&amp;lt;sup&amp;gt;''n''−1&amp;lt;/sup&amp;gt; runs occur (for example, a six-bit LFSR has 32 runs). Exactly half of these runs are one bit long, a quarter are two bits long, up to a single run of zeroes ''n''&amp;amp;nbsp;−&amp;amp;nbsp;1 bits long, and a single run of ones ''n'' bits long. This distribution almost equals the statistical [[Expected value|expectation value]] for a truly random sequence. However, the probability of finding exactly this distribution in a sample of a truly random sequence is rather low.&lt;br /&gt;
* LFSR output streams are [[deterministic]]. If the present state and the positions of the XOR gates in the LFSR are known, the next state can be predicted. This is not possible with truly random events. With maximal-length LFSRs, it is much easier to compute the next state, as there are only an easily limited number of them for each length.&lt;br /&gt;
* The output stream is reversible; an LFSR with mirrored taps will cycle through the output sequence in reverse order.&lt;br /&gt;
* The value consisting of all zeros cannot appear. Thus an LFSR of length ''n'' cannot be used to generate all 2&amp;lt;sup&amp;gt;''n''&amp;lt;/sup&amp;gt; values.&lt;br /&gt;
&lt;br /&gt;
== Applications ==&lt;br /&gt;
LFSRs 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. LFSRs have also been used for generating an approximation of [[white noise]] in various [[programmable sound generator]]s.&lt;br /&gt;
&lt;br /&gt;
=== Uses as counters ===&lt;br /&gt;
The repeating sequence of states of an LFSR allows it to be used as a [[clock divider]] or as a counter when a non-binary sequence is acceptable, as is often the case where computer index or framing locations need to be machine-readable.&lt;br /&gt;
* Irregular clocking of the LFSR, as in the [[alternating step generator]].&lt;br /&gt;
&lt;br /&gt;
Important LFSR-based stream ciphers include [[A5/1]] and [[A5/2]], used in [[GSM]] cell phones, [[E0 (cipher)|E0]], used in [[Bluetooth]], and the [[shrinking generator]]. The A5/2 cipher has been broken and both A5/1 and E0 have serious weaknesses.&lt;br /&gt;
&lt;br /&gt;
The linear feedback shift register has a strong relationship to [[linear congruential generator]]s.&lt;br /&gt;
&lt;br /&gt;
=== Uses in circuit testing ===&lt;br /&gt;
&lt;br /&gt;
LFSRs are used in circuit testing for test-pattern generation (for exhaustive testing, pseudo-random testing or pseudo-exhaustive testing) and for signature analysis.&lt;br /&gt;
&lt;br /&gt;
==== Test-pattern generation ====&lt;br /&gt;
Complete LFSR are commonly used as pattern generators for exhaustive testing, since they cover all possible inputs for an ''n''-input circuit. Maximal-length LFSRs and weighted LFSRs are widely used as pseudo-random test-pattern generators for pseudo-random test applications.&lt;br /&gt;
&lt;br /&gt;
==== Signature analysis ====&lt;br /&gt;
In [[built-in self-test]] (BIST) techniques, storing all the circuit outputs on chip is not possible, but the circuit output can be compressed to form a signature that will later be compared to the golden signature (of the good circuit) to detect faults. Since this compression is lossy, there is always a possibility that a faulty output also generates the same signature as the golden signature and the faults cannot be detected. This condition is called error masking or aliasing. BIST is accomplished with a multiple-input signature register (MISR or MSR), which is a type of LFSR. A standard LFSR has a single XOR or XNOR gate, where the input of the gate is connected to several &amp;quot;taps&amp;quot; and the output is connected to the input of the first flip-flop. A MISR has the same structure, but the input to every flip-flop is fed through an XOR/XNOR gate. For example, a 4-bit MISR has a 4-bit parallel output and a 4-bit parallel input. The input of the first flip-flop is XOR/XNORd with parallel input bit zero and the &amp;quot;taps&amp;quot;. Every other flip-flop input is XOR/XNORd with the preceding flip-flop output and the corresponding parallel input bit. Consequently, the next state of the MISR depends on the last several states opposed to just the current state. Therefore, a MISR will always generate the same golden signature given that the input sequence is the same every time.&lt;br /&gt;
&lt;br /&gt;
=== Uses in digital broadcasting and communications ===&lt;br /&gt;
&lt;br /&gt;
==== Scrambling ====&lt;br /&gt;
&lt;br /&gt;
To prevent short repeating sequences (e.g., runs of 0s or 1s) from forming spectral lines that may complicate symbol tracking at the&lt;br /&gt;
receiver or interfere with other transmissions, the data bit sequence is combined with the output of a linear-feedback register before modulation and transmission. This scrambling is removed at the receiver after demodulation. When the LFSR runs at the same [[bit rate]] as the transmitted symbol stream, this technique is referred to as [[scrambler|scrambling]]. When the LFSR runs considerably faster than the symbol stream, the LFSR-generated bit sequence is called ''chipping code''. The chipping code is combined with the data using [[exclusive or]] before transmitting using [[binary phase-shift keying]] or a similar modulation method. The resulting signal has a higher bandwidth than the data, and therefore this is a method of [[spread-spectrum]] communication. When used only for the spread-spectrum property, this technique is called [[direct-sequence spread spectrum]]; when used to distinguish several signals transmitted in the same channel at the same time and frequency, it is called [[code division multiple access]].&lt;br /&gt;
&lt;br /&gt;
Neither scheme should be confused with [[encryption]] or [[encipherment]]; scrambling and spreading with LFSRs do ''not'' protect the information from eavesdropping. They are instead used to produce equivalent streams that possess convenient engineering properties to allow robust and efficient modulation and demodulation.&lt;br /&gt;
&lt;br /&gt;
Digital broadcasting systems that use linear-feedback registers:&lt;br /&gt;
* [[ATSC Standards]] (digital TV transmission system – North America)&lt;br /&gt;
* [[Digital Audio Broadcasting|DAB]] ([[Digital Audio Broadcasting]] system – for radio)&lt;br /&gt;
* [[DVB-T]] (digital TV transmission system – Europe, Australia, parts of Asia)&lt;br /&gt;
* [[NICAM]] (digital audio system for television)&lt;br /&gt;
&lt;br /&gt;
Other digital communications systems using LFSRs:&lt;br /&gt;
* INTELSAT business service (IBS)&lt;br /&gt;
* Intermediate data rate (IDR)&lt;br /&gt;
* [[Serial digital interface|SDI]] (Serial Digital Interface transmission)&lt;br /&gt;
* Data transfer over [[PSTN]] (according to the [[ITU-T]] V-series recommendations)&lt;br /&gt;
* [[CDMA]] (Code Division Multiple Access) cellular telephony&lt;br /&gt;
* [[Fast Ethernet#100BASE-T2|100BASE-T2 &amp;quot;fast&amp;quot; Ethernet]] scrambles bits using an LFSR&lt;br /&gt;
* [[Gigabit Ethernet#1000BASE-T|1000BASE-T Ethernet]], the most common form of Gigabit Ethernet, scrambles bits using an LFSR&lt;br /&gt;
* [[PCI Express]] 3.0&lt;br /&gt;
* [[SATA]]&lt;br /&gt;
* [[Serial attached SCSI]] (SAS/SPL)&lt;br /&gt;
* [[USB 3.0]]&lt;br /&gt;
* [[IEEE 802.11a]] scrambles bits using an LFSR&lt;br /&gt;
* [[Bluetooth Low Energy]] Link Layer is making use of LFSR (referred to as whitening)&lt;br /&gt;
* [[Satellite navigation system]]s such as [[GPS]] and [[GLONASS]]. All current systems use LFSR outputs to generate some or all of their ranging codes (as the chipping code for CDMA or DSSS) or to modulate the carrier without data (like GPS&amp;amp;nbsp;L2&amp;amp;nbsp;CL ranging code). GLONASS also uses [[frequency-division multiple access]] combined with DSSS.&lt;br /&gt;
&lt;br /&gt;
==== Other uses ====&lt;br /&gt;
LFSRs are also used in [[radio jamming]] systems to generate pseudo-random noise to raise the noise floor of a target communication system.&lt;br /&gt;
&lt;br /&gt;
The German time signal [[DCF77]], in addition to amplitude keying, employs [[phase-shift keying]] driven by a 9-stage LFSR to increase the accuracy of received time and the robustness of the data stream in the presence of noise.&lt;br /&gt;
&lt;br /&gt;
==Source==&lt;br /&gt;
&lt;br /&gt;
[http://wikipedia.org/ http://wikipedia.org/]&lt;br /&gt;
&lt;br /&gt;
[[Category:Cryptography]]&lt;br /&gt;
[[Category:Cryptographic algorithms]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
		
	</entry>
</feed>