Movatterモバイル変換


[0]ホーム

URL:


Wikipedia

Linear-feedback shift register

(Redirected fromLFSR)
"LFSR" redirects here. For the airport using that ICAO code, seeReims – Champagne Air Base.

This articleneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources. Unsourced material may be challenged and removed.
Find sources: "Linear-feedback shift register" – news ·newspapers ·books ·scholar ·JSTOR
(March 2009) (Learn how and when to remove this message)

Incomputing, alinear-feedback shift register (LFSR) is ashift register whose input bit is alinear function of its previous state.

The most commonly used linear function of single bits isexclusive-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.

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 awell-chosen feedback function can produce a sequence of bits that appears random and has avery long cycle.

Applications of LFSRs include generatingpseudo-random numbers,pseudo-noise sequences, fast digital counters, andwhitening sequences. Both hardware and software implementations of LFSRs are common.

The mathematics of acyclic redundancy check, used to provide a quick check against transmission errors, are closely related to those of an LFSR.[1] In general, the arithmetics behind LFSRs makes them very elegant as an object to study and implement. One can produce relatively complex logics with simple building blocks. However, other methods, that are less elegant but perform better, should be considered as well.

Fibonacci LFSRs

edit
 
A 16-bitFibonacci LFSR. The feedback tap numbers shown correspond to a primitive polynomial in the table, so the register cycles through the maximum number of 65535 states excluding the all-zeroes state. The state shown, 0xACE1 (hexadecimal) will be followed by 0x5670.
A Fibonacci 31 bit linear feedback shift register with taps at positions 28 and 31 (indicated by the yellow LEDs), giving it a maximum cycle and period at this speed of approximately 8 years.

The bit positions that affect the next state are called thetaps. In the diagram the taps are [16,14,13,11]. The rightmost bit of the LFSR is called the output bit, which is always also a tap. To obtain the next state, the tap bits are XOR-ed sequentially; then, all bits are shifted one place to the right, with the rightmost bit being discarded, and that result of XOR-ing the tap bits is fed back into the now-vacant leftmost bit. To obtain the pseudorandom output stream, read the rightmost bit after each state transition.

  • A maximum-length LFSR produces anm-sequence (i.e., it cycles through all possible 2m − 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.
  • As an alternative to the XOR-based feedback in an LFSR, one can also useXNOR.[2] This function is anaffine map, not strictly alinear 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 "locked-up" in this state. This method can be advantageous in hardware LFSRs using flip-flops that start in a zero state, as it does not start in a lockup state, meaning that the register does not need to be seeded in order to begin operation.

The sequence of numbers generated by an LFSR or its XNOR counterpart can be considered abinary numeral system just as valid asGray code or the natural binary code.

The arrangement of taps for feedback in an LFSR can be expressed infinite field arithmetic as apolynomialmod 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

x16+x14+x13+x11+1.{\displaystyle x^{16}+x^{14}+x^{13}+x^{11}+1.} 

The "one" in the polynomial does not correspond to a tap – it corresponds to the input to the first bit (i.e.x0, 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.

The LFSR is maximal-length if and only if the corresponding feedback polynomial isprimitive over theGalois field GF(2).[3][4] This means that the following conditions are necessary (but not sufficient):

  • The number of taps iseven.
  • The set of taps issetwise co-prime; i.e., there must be no divisor other than 1 common to all taps.

Tables of primitive polynomials from which maximum-length LFSRs can be constructed are given below and in the references.

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 ann-bit LFSR is[n,A,B,C, 0], where the 0 corresponds to thex0 = 1 term, then the corresponding "mirror" sequence is[n,nC,nB,nA, 0]. So the tap sequence[32, 22, 2, 1, 0] has as its counterpart[32, 31, 30, 10, 0]. Both give a maximum-length sequence.

An example inC is below:

#include<stdint.h>unsignedlfsr_fib(void){uint16_tstart_state=0xACE1u;/* Any nonzero start state will work. */uint16_tlfsr=start_state;uint16_tbit;/* Must be 16-bit to allow bit<<15 later in the code */unsignedperiod=0;do{/* taps: 16 14 13 11; feedback polynomial: x^16 + x^14 + x^13 + x^11 + 1 */bit=((lfsr>>0)^(lfsr>>2)^(lfsr>>3)^(lfsr>>5))&1u;lfsr=(lfsr>>1)|(bit<<15);++period;}while(lfsr!=start_state);returnperiod;}

If a fastparity orpopcount operation is available, the feedback bit can be computed more efficiently as thedot product of the register with the characteristic polynomial:

  • bit=parity(lfsr&0x002Du);, or equivalently
  • bit=popcnt(lfsr&0x002Du)/* & 1u */;. (The& 1u turns the popcnt into a true parity function, but the bitshift laterbit << 15 makes higher bits irrelevant.)

If a rotation operation is available, the new state can be computed as

  • lfsr=rotateright((lfsr&~1u)|(bit&1u),1);, or equivalently
  • lfsr=rotateright(((bit^lfsr)&1u)^lfsr,1);

This LFSR configuration is also known asstandard,many-to-one orexternal XOR gates. The alternative Galois configuration is described in the next section.

Example in Python

edit

A sample python implementation of a similar (16 bit taps at [16,15,13,4]) Fibonacci LFSR would be

start_state=1<<15|1lfsr=start_stateperiod=0whileTrue:# taps: 16 15 13 4; feedback polynomial: x^16 + x^15 + x^13 + x^4 + 1bit=(lfsr^(lfsr>>1)^(lfsr>>3)^(lfsr>>12))&1lfsr=(lfsr>>1)|(bit<<15)period+=1iflfsr==start_state:print(period)break

Where a register of 16 bits is used and the xor tap at the fourth, 13th, 15th and sixteenth bit establishes a maximum sequence length.

Galois LFSRs

edit
 
A 16-bit Galois LFSR. The register numbers above correspond to the same primitive polynomial as the Fibonacci example but are counted in reverse to the shifting direction. This register also cycles through the maximal number of 65535 states excluding the all-zeroes state. The state ACE1 hex shown will be followed by E270 hex.

Named after the French mathematicianÉvariste Galois, an LFSR in Galois configuration, which is also known asmodular,internal XORs, orone-to-many LFSR, is an alternate structure that can generate the same output stream as a conventional LFSR (but offset in time).[5] 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.

To generate the same output stream, the order of the taps is thecounterpart (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.

  • 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.
  • 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.

Below is aC code example for the 16-bit maximal-period Galois LFSR example in the figure:

#include<stdint.h>unsignedlfsr_galois(void){uint16_tstart_state=0xACE1u;/* Any nonzero start state will work. */uint16_tlfsr=start_state;unsignedperiod=0;do{#ifndef LEFTunsignedlsb=lfsr&1u;/* Get LSB (i.e., the output bit). */lfsr>>=1;/* Shift register */if(lsb)/* If the output bit is 1, */lfsr^=0xB400u;/*  apply toggle mask. */#elseunsignedmsb=(int16_t)lfsr<0;/* Get MSB (i.e., the output bit). */lfsr<<=1;/* Shift register */if(msb)/* If the output bit is 1, */lfsr^=0x002Du;/*  apply toggle mask. */#endif++period;}while(lfsr!=start_state);returnperiod;}

The branchif(lsb)lfsr^=0xB400u;can also be written aslfsr^=(-lsb)&0xB400u; which may produce more efficient code on some compilers. In addition, the left-shifting variant may produce even better code, as themsb is thecarry from the addition oflfsr to itself.

Galois LFSR parallel computation

edit

State and resulting bits can also be combined and computed in parallel. The following function calculates the next 64 bits using the 63-bit polynomialx63+x62+1{\displaystyle x^{63}+x^{62}+1} :

#include<stdint.h>uint64_tprsg63(uint64_tlfsr){lfsr=lfsr<<32|(lfsr<<1^lfsr<<2)>>32;lfsr=lfsr<<32|(lfsr<<1^lfsr<<2)>>32;returnlfsr;}

Non-binary Galois LFSR

edit

Binary Galois LFSRs like the ones shown above can be generalized to anyq-ary alphabet {0, 1, ...,q − 1} (e.g., for binary,q = 2, and the alphabet is simply {0, 1}). In this case, the exclusive-or component is generalized to additionmodulo-q (note that XOR is addition modulo 2), and the feedback bit (output bit) is multiplied (modulo-q) by aq-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 generateGalois fields for arbitrary prime values ofq.

Xorshift LFSRs

edit
Main article:Xorshift

As shown byGeorge Marsaglia[6] and further analysed byRichard P. Brent,[7] linear feedback shift registers can be implemented using XOR and Shift operations. This approach lends itself to fast execution in software because these operations typically map efficiently into modern processor instructions.

Below is aC code example for a 16-bit maximal-period Xorshift LFSR using the 7,9,13 triplet from John Metcalf:[8]

#include<stdint.h>unsignedlfsr_xorshift(void){uint16_tstart_state=0xACE1u;/* Any nonzero start state will work. */uint16_tlfsr=start_state;unsignedperiod=0;do{// 7,9,13 triplet from http://www.retroprogramming.com/2017/07/xorshift-pseudorandom-numbers-in-z80.htmllfsr^=lfsr>>7;lfsr^=lfsr<<9;lfsr^=lfsr>>13;++period;}while(lfsr!=start_state);returnperiod;}

Matrix forms

edit

Binary LFSRs of both Fibonacci and Galois configurations can be expressed as linear functions using matrices inF2{\displaystyle \mathbb {F} _{2}}  (seeGF(2)).[9] Using thecompanion matrix of the characteristic polynomial of the LFSR and denoting the seed as a column vector(a0,a1,,an1)T{\displaystyle (a_{0},a_{1},\dots ,a_{n-1})^{\mathrm {T} }} , the state of the register in Fibonacci configuration afterk{\displaystyle k}  steps is given by

(akak+1ak+2ak+n1)=(010000100001c0c1cn1)(ak1akak+1ak+n2)=(010000100001c0c1cn1)k(a0a1a2an1){\displaystyle {\begin{pmatrix}a_{k}\\a_{k+1}\\a_{k+2}\\\vdots \\a_{k+n-1}\end{pmatrix}}={\begin{pmatrix}0&1&0&\cdots &0\\0&0&1&\ddots &\vdots \\\vdots &\vdots &\ddots &\ddots &0\\0&0&\cdots &0&1\\c_{0}&c_{1}&\cdots &\cdots &c_{n-1}\end{pmatrix}}{\begin{pmatrix}a_{k-1}\\a_{k}\\a_{k+1}\\\vdots \\a_{k+n-2}\end{pmatrix}}={\begin{pmatrix}0&1&0&\cdots &0\\0&0&1&\ddots &\vdots \\\vdots &\vdots &\ddots &\ddots &0\\0&0&\cdots &0&1\\c_{0}&c_{1}&\cdots &\cdots &c_{n-1}\end{pmatrix}}^{k}{\begin{pmatrix}a_{0}\\a_{1}\\a_{2}\\\vdots \\a_{n-1}\end{pmatrix}}} 

Matrix for the corresponding Galois form is :

(c0100c1010cn2001cn100){\displaystyle {\begin{pmatrix}c_{0}&1&0&\cdots &0\\c_{1}&0&1&\ddots &\vdots \\\vdots &\vdots &\ddots &\ddots &0\\c_{n-2}&0&\cdots &0&1\\c_{n-1}&0&\cdots &\cdots &0\end{pmatrix}}} 

For a suitable initialisation,

ai=i=0jaijcnj, 0i<n{\displaystyle a'_{i}=\sum _{i=0}^{j}a_{i-j}c_{n-j},\ 0\leq i<n} 

the top coefficient of the column vector :

(c0100c1010cn2001cn100)k(a0a1a2an1){\displaystyle {\begin{pmatrix}c_{0}&1&0&\cdots &0\\c_{1}&0&1&\ddots &\vdots \\\vdots &\vdots &\ddots &\ddots &0\\c_{n-2}&0&\cdots &0&1\\c_{n-1}&0&\cdots &\cdots &0\end{pmatrix}}^{k}{\begin{pmatrix}a'_{0}\\a'_{1}\\a'_{2}\\\vdots \\a'_{n-1}\end{pmatrix}}} 

gives the termak of the original sequence.

These forms generalize naturally to arbitrary fields.

Example polynomials for maximal LFSRs

edit

The following table lists examples of maximal-length feedback polynomials (primitive polynomials) for shift-register lengths up to 24. The formalism for maximum-length LFSRs was developed bySolomon W. Golomb in his 1967 book.[10] The number of differentprimitive polynomials grows exponentially with shift-register length and can be calculated exactly usingEuler's totient function[11] (sequenceA011260 in theOEIS).

Bits (n)Feedback polynomialTapsTaps (hex)Period (2n1{\displaystyle 2^{n}-1} )
2x2+x+1{\displaystyle x^{2}+x+1} 110x33
3x3+x2+1{\displaystyle x^{3}+x^{2}+1} 1100x67
4x4+x3+1{\displaystyle x^{4}+x^{3}+1} 11000xC15
5x5+x3+1{\displaystyle x^{5}+x^{3}+1} 101000x1431
6x6+x5+1{\displaystyle x^{6}+x^{5}+1} 1100000x3063
7x7+x6+1{\displaystyle x^{7}+x^{6}+1} 11000000x60127
8x8+x6+x5+x4+1{\displaystyle x^{8}+x^{6}+x^{5}+x^{4}+1} 101110000xB8255
9x9+x5+1{\displaystyle x^{9}+x^{5}+1} 1000100000x110511
10x10+x7+1{\displaystyle x^{10}+x^{7}+1} 10010000000x2401,023
11x11+x9+1{\displaystyle x^{11}+x^{9}+1} 101000000000x5002,047
12x12+x11+x10+x4+1{\displaystyle x^{12}+x^{11}+x^{10}+x^{4}+1} 1110000010000xE084,095
13x13+x12+x11+x8+1{\displaystyle x^{13}+x^{12}+x^{11}+x^{8}+1} 11100100000000x1C808,191
14x14+x13+x12+x2+1{\displaystyle x^{14}+x^{13}+x^{12}+x^{2}+1} 111000000000100x380216,383
15x15+x14+1{\displaystyle x^{15}+x^{14}+1} 1100000000000000x600032,767
16x16+x15+x13+x4+1{\displaystyle x^{16}+x^{15}+x^{13}+x^{4}+1} 11010000000010000xD00865,535
17x17+x14+1{\displaystyle x^{17}+x^{14}+1} 100100000000000000x12000131,071
18x18+x11+1{\displaystyle x^{18}+x^{11}+1} 1000000100000000000x20400262,143
19x19+x18+x17+x14+1{\displaystyle x^{19}+x^{18}+x^{17}+x^{14}+1} 11100100000000000000x72000524,287
20x20+x17+1{\displaystyle x^{20}+x^{17}+1} 100100000000000000000x900001,048,575
21x21+x19+1{\displaystyle x^{21}+x^{19}+1} 1010000000000000000000x1400002,097,151
22x22+x21+1{\displaystyle x^{22}+x^{21}+1} 11000000000000000000000x3000004,194,303
23x23+x18+1{\displaystyle x^{23}+x^{18}+1} 100001000000000000000000x4200008,388,607
24x24+x23+x22+x17+1{\displaystyle x^{24}+x^{23}+x^{22}+x^{17}+1} 1110000100000000000000000xE1000016,777,215

Output-stream properties

edit
  • Ones and zeroes occur in "runs". 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, 2n−1 runs occur (in the example above, the 3-bit LFSR has 4 runs). Exactly half of these runs are one bit long, a quarter are two bits long, up to a single run of zeroesn − 1 bits long, and a single run of onesn bits long. This distribution almost equals the statisticalexpectation 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[vague].
  • LFSR output streams aredeterministic. If the present state and the positions of the XOR gates in the LFSR are known, the next state can be predicted.[12] 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.
  • The output stream is reversible; an LFSR with mirrored taps will cycle through the output sequence in reverse order.
  • The value consisting of all zeros cannot appear. Thus an LFSR of lengthn cannot be used to generate all 2n values.

Applications

edit

LFSRs can be implemented in hardware, and this makes them useful in applications that require very fast generation of a pseudo-random sequence, such asdirect-sequence spread spectrum radio. LFSRs have also been used for generating an approximation ofwhite noise in variousprogrammable sound generators.

Uses as counters

edit

The repeating sequence of states of an LFSR allows it to be used as aclock 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.[12] LFSRcounters have simpler feedback logic than natural binary counters orGray-code counters, and therefore can operate at higher clock rates. However, it is necessary to ensure that the LFSR never enters a lockup state (all zeros for a XOR based LFSR, and all ones for a XNOR based LFSR), for example by presetting it at start-up to any other state in the sequence. It is possible to count up and down with a LFSR. LFSR have also been used as aProgram Counter for CPUs, this requires that the program itself is "scrambled" and it done to save on gates when they are a premium (using fewer gates than an adder) and for speed (as a LFSR does not require a long carry chain).

The table of primitive polynomials shows how LFSRs can be arranged in Fibonacci or Galois form to give maximal periods. One can obtain any other period by adding to an LFSR that has a longer period some logic that shortens the sequence by skipping some states.

Uses in cryptography

edit

LFSRs have long been used aspseudo-random number generators for use instream ciphers, due to the ease of construction from simpleelectromechanical orelectronic circuits, longperiods, and very uniformlydistributed output streams. However, an LFSR is a linear system, leading to fairly easycryptanalysis. For example, given a stretch ofknown plaintext and corresponding ciphertext, an attacker can intercept and recover a stretch of LFSR output stream used in the system described, and from that stretch of the output stream can construct an LFSR of minimal size that simulates the intended receiver by using theBerlekamp-Massey algorithm. This LFSR can then be fed the intercepted stretch of output stream to recover the remaining plaintext.

Three general methods are employed to reduce this problem in LFSR-based stream ciphers:

Important: LFSR-based stream ciphers includeA5/1 andA5/2, used inGSM cell phones,E0, used inBluetooth, and theshrinking generator. The A5/2 cipher has been broken and both A5/1 and E0 have serious weaknesses.[14][15]

The linear feedback shift register has a strong relationship tolinear congruential generators.[16]

Uses in circuit testing

edit
This sectionneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources in this section. Unsourced material may be challenged and removed.(November 2022) (Learn how and when to remove this message)

LFSRs are used in circuit testing for test-pattern generation (for exhaustive testing, pseudo-random testing or pseudo-exhaustive testing) and for signature analysis.

Test-pattern generation

edit

Complete LFSR are commonly used as pattern generators for exhaustive testing, since they cover all possible inputs for ann-input circuit. Maximal-length LFSRs and weighted LFSRs are widely used as pseudo-random test-pattern generators for pseudo-random test applications.

Signature analysis

edit

Inbuilt-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 "taps" 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 "taps". 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.Recent applications[17] are proposing set-reset flip-flops as "taps" of the LFSR. This allows the BIST system to optimise storage, since set-reset flip-flops can save the initial seed to generate the whole stream of bits from the LFSR. Nevertheless, this requires changes in the architecture of BIST, is an option for specific applications.

Uses in digital broadcasting and communications

edit

Scrambling

edit
Main article:Scrambler

To prevent short repeating sequences (e.g., runs of 0s or 1s) from forming spectral lines that may complicate symbol tracking at thereceiver 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 samebit rate as the transmitted symbol stream, this technique is referred to asscrambling. When the LFSR runs considerably faster than the symbol stream, the LFSR-generated bit sequence is calledchipping code. The chipping code is combined with the data usingexclusive or before transmitting usingbinary phase-shift keying or a similar modulation method. The resulting signal has a higher bandwidth than the data, and therefore this is a method ofspread-spectrum communication. When used only for the spread-spectrum property, this technique is calleddirect-sequence spread spectrum; when used to distinguish several signals transmitted in the same channel at the same time and frequency, it is calledcode-division multiple access.

Neither scheme should be confused withencryption orencipherment; scrambling and spreading with LFSRs donot 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.

Digital broadcasting systems that use linear-feedback registers:

Other digital communications systems using LFSRs:

Other uses

edit

LFSRs are also used inradio jamming systems to generate pseudo-random noise to raise the noise floor of a target communication system.

The German time signalDCF77, in addition to amplitude keying, employsphase-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.[19]

See also

edit

References

edit
  1. ^Geremia, Patrick."Cyclic Redundancy Check Computation: An Implementation Using the TMS320C54x"(PDF). Texas Instruments. p. 6. RetrievedOctober 16, 2016.
  2. ^Linear Feedback Shift Registers in Virtex Devices
  3. ^Gentle, James E. (2003).Random number generation and Monte Carlo methods (2nd ed.). New York: Springer. p. 38.ISBN 0-387-00178-6.OCLC 51534945.
  4. ^Tausworthe, Robert C. (April 1965)."Random Numbers Generated by Linear Recurrence Modulo Two"(PDF).Mathematics of Computation.19 (90):201–209.doi:10.1090/S0025-5718-1965-0184406-1.S2CID 120804149.
  5. ^Press, William; Teukolsky, Saul; Vetterling, William; Flannery, Brian (2007).Numerical Recipes: The Art of Scientific Computing, Third Edition.Cambridge University Press. p. 386.ISBN 978-0-521-88407-5.
  6. ^Marsaglia, George (July 2003)."Xorshift RNGs".Journal of Statistical Software.8 (14).doi:10.18637/jss.v008.i14.
  7. ^Brent, Richard P. (August 2004)."Note on Marsaglia's Xorshift Random Number Generators".Journal of Statistical Software.11 (5).doi:10.18637/jss.v011.i05.hdl:1885/34049.
  8. ^Metcalf, John (22 July 2017)."16-Bit Xorshift Pseudorandom Numbers in Z80 Assembly".Retro Programming. Retrieved5 January 2022.
  9. ^Klein, A. (2013). "Linear Feedback Shift Registers".Stream Ciphers. London: Springer. pp. 17–18.doi:10.1007/978-1-4471-5079-4_2.ISBN 978-1-4471-5079-4.
  10. ^Golomb, Solomon W. (1967).Shift register sequences. Laguna Hills, Calif.: Aegean Park Press.ISBN 978-0894120480.
  11. ^Weisstein, Eric W."Primitive Polynomial".mathworld.wolfram.com. Retrieved2021-04-27.
  12. ^abAlfke, Peter (July 7, 1996)."Efficient Shift Registers, LFSR Counters, and Long Pseudo-Random Sequence Generators"(PDF).Xilinx Application Notes, XAPP 052. AMD Technical Information Portal.
  13. ^A. Poorghanad, A. Sadr, A. Kashanipour" Generating High Quality Pseudo Random Number Using Evolutionary Methods", IEEE Congress on Computational Intelligence and Security, vol. 9, pp. 331-335, May, 2008[1]
  14. ^Barkam, Elad; Biham, Eli; Keller, Nathan (2008),"Instant Ciphertext-Only Cryptanalysis of GSM Encrypted Communication"(PDF),Journal of Cryptology,21 (3):392–429,doi:10.1007/s00145-007-9001-y,S2CID 459117, archived fromthe original(PDF) on 2020-01-25, retrieved2019-09-15
  15. ^Lu, Yi; Willi Meier; Serge Vaudenay (2005). "The Conditional Correlation Attack: A Practical Attack on Bluetooth Encryption".Advances in Cryptology – CRYPTO 2005. Lecture Notes in Computer Science. Vol. 3621. Santa Barbara, California, USA. pp. 97–117.CiteSeerX 10.1.1.323.9416.doi:10.1007/11535218_7.ISBN 978-3-540-28114-6.{{cite book}}: CS1 maint: location missing publisher (link)
  16. ^RFC 4086section 6.1.3 "Traditional Pseudo-random Sequences"
  17. ^Martínez LH, Khursheed S, Reddy SM. LFSR generation for high test coverage and low hardware overhead. IET Computers & Digital Techniques. 2019 Aug 21.UoL repository
  18. ^Section 9.5 of the SATA Specification, revision 2.6
  19. ^Hetzel, P. (16 March 1988).Time dissemination via the LF transmitter DCF77 using a pseudo-random phase-shift keying of the carrier(PDF). 2nd European Frequency and Time Forum. Neuchâtel. pp. 351–364. Retrieved11 October 2011.

Further reading

edit

External links

edit

[8]ページ先頭

©2009-2025 Movatter.jp