ArticlePDF Available

Abstract

G. Marsaglia introduced recently a class of very fast xorshift random number generators, whose implementation uses three "xorshift" operations. They belong to a large family of generators based on linear recurrences modulo 2, which also includes shift-register generators, the Mersenne twister, and several others. In this paper, we analyze the theoretical properties of xorshift generators, search for the best ones with respect to the equidistribution criterion, and test them empirically. We find that the vast majority of xorshift generators with only three xorshift operations, including those having good equidistribution, fail several simple statistical tests. We also discuss generators with more than three xorshifts.
On the Xorshift Random Number Generators
FRANC¸OIS PANNETON and PIERRE L’ECUYER
Universit´e de Montr´eal
G. Marsaglia introduced recently a class of very fast xorshift random number generators, whose
implementation uses three “xorshift” operations. They belong to a large family of generators based
on linear recurrences modulo 2, which also includes shift-register generators, the Mersenne twister,
and several others. In this paper, we analyze the theoretical properties of xorshift generators,
search for the best ones with respect to the equidistribution criterion, and test them empirically.
We find that the vast majority of xorshift generators with only three xorshift operations, including
those having good equidistribution, fail several simple statistical tests. We also discuss generators
with more than three xorshifts.
Categories and Subject Descriptors: G.4 [Mathematical Software]: Algorithm design and
analysis; I.6 [Computing Methodologies]: Simulation and Modeling
General Terms: Algorithms
Additional Key Words and Phrases: Random number generation, xorshift, linear feedback shift
register, linear recurrence modulo 2
1. INTRODUCTION
Marsaglia [2003] proposed a class of very fast uniform random number generators
(RNGs) called xorshift. The state of a xorshift generator is a vector of bits. At each
step, the next state is obtained by applying a certain number of xorshift operations
to w-bit blocks in the current state, where w= 32 or 64, and a xorshift operation
is defined as follows: replace the w-bit block by a bitwise xor (exclusive or) of the
original block with a shifted copy of itself by apositions either to the right or to
the left, where 0 < a < w.
Xorshifts are linear operations. The left shift of a w-bit vector xby one bit,
x1, can also be written as Lx where Lis the w×wmatrix with ones on its
main superdiagonal and zeros elsewhere. Similarly, the right shift x1 can be
written as Rx where Rhas ones on its main subdiagonal and zeros elsewhere.
Matrices of the forms (I+La) and (I+Ra), where a∈ {1, . . . , w 1}, are called
left and right xorshift matrices, respectively. They represent left and right a-bit
xorshift operations.
epartement d’Informatique et de Recherche Op´erationnelle, Universit´e de Montr´eal, C.P.
6128, Succ. Centre-Ville, Montr´eal, H3C 3J7, Canada, e-mail: panneton@iro.umontreal.ca,
lecuyer@iro.umontreal.ca
Permission to make digital/hard copy of all or part of this material without fee for personal
or classroom use provided that the copies are not made or distributed for profit or commercial
advantage, the ACM copyright/server notice, the title of the publication, and its date appear, and
notice is given that copying is by permission of the ACM, Inc. To copy otherwise, to republish,
to post on servers, or to redistribute to lists requires prior specific permission and/or a fee.
c
20YY ACM 0000-0000/20YY/0000-0001 $5.00
ACM Journal Name, Vol. V, No. N, Month 20YY, Pages 1–16.
2·F. Panneton and P. L’Ecuyer
Axorshift generator is defined by a recurrence of the form
vi=
p
X
j=1
˜
Ajvimjmod 2 (1)
where pis a positive integer, the vi’s are w-bit vectors, the mj’s are positive integers,
and ˜
Ajis either the identity or the product of νjxorshift matrices for some νj0,
for each j(˜
Ajis the zero matrix if νj= 0). If we define r= max1jpmj,
the generator’s state at step ican be written as xi= (vT
ir+1, . . . , vT
i)Tand the
output is ui=Pw
`=1 vi,`12`where vi= (vi,0, . . . , vi,w1)T. The output sequence
{ui, i 0}is supposed to imitate i.i.d. random variables uniformly distributed over
the interval [0,1]. We can rewrite (1) as
vi=
r
X
j=1
Ajvijmod 2 where Aj=X
{l:ml=j}
˜
Al.(2)
This is a special case of the multiple recursive matrix method defined in Niederreiter
[1995].
Marsaglia [2003] considers three types of xorshift generators, mostly with ν1+
· · · +νr= 3 (i.e., exactly three xorshift operations). The type I generators have
r= 1 and A1is the product of three xorshift matrices. For example, one may
have A1= (I+L13)(I+R17)(I+L5), which Marsaglia says is “one of my favorite
choices.” For the type II generators, r > 1, Ar6= 0 and only one other matrix
Ajis nonzero. For example, one could have r= 4, A4= (I+R7)(I+L11), and
A1= (I+L20). The type III generators have r > 1, Ar6= 0, exactly three matrices
Ajare xorshift matrices, and the others are zero. For example, one may have
r= 12, A2= (I+L7), A3= (I+R11 ), and A12 = (I+L21).
These generators are extremely fast and it is easy to find parameter values for
which they have full period length 2rw 1. This period length can be made very
large by selecting a large rand (say) w= 32. But as we all know, a long period
does not suffice to have a high-quality generator. In his paper, Marsaglia says:
“Although I have only tested a few of them, any one of the 648 choices above is
likely to provide a very fast, simple, high quality RNG.” So, how robust and reliable
are they?
To answer this question, in this paper, we study the xorshift generators from
both the theoretical and empirical perspectives. These generators form a subclass
of a large and well-known family of RNGs based on linear recurrences modulo 2,
as described in Section 2. In Section 3, we recall standard equidistribution criteria
that are widely used to measure the uniformity and independence of these linear
generators. In Section 4, we establish some properties of xorshift matrices and
generators. In particular, we identify classes of generators having the same period
length, others having the same equidistribution, and others that are completely
equivalent. In Section 5, we assess the equidistribution of specific instances pro-
posed by Marsaglia and submit them to statistical tests. Many of them have very
bad equidistribution and fail some tests spectacularly. In Section 6, we perform a
search for the best generators of type I, II, and III with respect to equidistribution
criteria, under the constraint that they use only three xorshift operations. We test
ACM Journal Name, Vol. V, No. N, Month 20YY.
Xorshift Generators ·3
the best ones and find that they are statistically weak. In Section 7, we briefly look
at xorshift generators with more than three xorshifts.
2. MATRIX LINEAR RECURRENCES MODULO 2
The xorshift generators belong to a large class of RNGs based on the following type
of linear recurrences modulo 2:
xi=Axi1mod 2,(3)
yi=Bximod 2,(4)
ui=
w
X
`=1
yi,`12`=.yi,0yi,1yi,2· · · ,(5)
where xi= (xi,0, . . . , xi,k1)Tand yi= (yi,0, . . . , yi,w1)Tare the k-bit state and
the w-bit output vector at step i,Ais a k×kbinary transition matrix,Bis a w×k
binary output transformation matrix,kand ware positive integers, and ui[0,1) is
the output at step i. By appropriate choices of Aand B, several types of generators
can be obtained as special cases of this general class; for instance the Tausworthe,
linear feedback shift register (LFSR), generalized feedback shift register (GFSR),
twisted GFSR, Mersenne twister, WELL, etc. (see, e.g., L’Ecuyer 2004; Panneton
et al. 2005, and Panneton 2004 for the details). Important advantages of these
generators are that fast implementations are available (they exploit the binary
nature of computers) and that their mathematical properties are well understood
from a theoretical perspective.
Let P(z) = det(AIz) be the characteristic polynomial of A. It is well-known
that the recurrence (3) has period length 2k1 (its maximal possible value) if and
only if P(z) is a primitive polynomial modulo 2 [Niederreiter 1992; Knuth 1998].
Xorshift generators fit this setting by taking k=rw,
A=
0I· · · 0
.
.
.....
.
.
0 0 · · · I
ArAr1· · · A1
,
xi= (vT
ir+1, . . . , vT
i)T, and yi=vi. The matrix Bcontains a w×widentity Iin
its upper left corner and zeros elsewhere. The characteristic polynomial of this Ais
P(z) = det(zrI+Pr
j=1 zrjAj). While completing this paper, we found a related
article by Brent [2004a], who also reports the similitudes between the xorshift and
LFSR generators.
Note that replacing the identity Iin the upper left corner of Bby an arbitrary
invertible w×wmatrix ˜
B, i.e., defining yi=˜
Bvi, is equivalent to replacing each
Ajin (2) by ˜
BAj˜
B1, which gives the recurrence
yi=
r
X
j=1
˜
BAj˜
B1yijmod 2.(6)
This does not change the characteristic polynomial P(z).
ACM Journal Name, Vol. V, No. N, Month 20YY.
4·F. Panneton and P. L’Ecuyer
3. EQUIDISTRIBUTION
For an arbitrary integer t > 0, a vector of tsuccessive output values of an RNG
would ideally behave as a random vector uniformly distributed over the t-dimensional
unit hypercube [0,1]t. But for an RNG defined by (3)–(5), all these vectors must
belong to the finite set
Ψt={(u0, u1, . . . , ut1) : x0∈ {0,1}k}.
It is customary to require that Ψtcovers [0,1]tvery evenly for all tup to some large
integer, so that drawing a point uniformly from the “sample space” Ψtgives a good
approximation of a uniform random variable over [0,1]t[L’Ecuyer 2004]. For this
class of RNGs, a standard way of assessing the uniformity of Ψtis the following.
Recall that Ψthas cardinality 2k. If we divide the interval [0,1) into 2`equal
segments for some positive integer `, this determines a partition of the unit hyper-
cube [0,1)tinto 2t` cubic cells of equal size, called a (t, `)-equidissection in base 2.
The set Ψtis said to be (t, `)-equidistributed if each cell contains exactly 2kt` of
its points. This can be verified by expressing the t` bits that determine the cell
number of a point as a linear combination of the kbits of the state, and check-
ing if the corresponding matrix has full rank [Fushimi and Tezuka 1983; L’Ecuyer
1996]. For a fixed resolution `, let t`denote the largest value of tsuch that Ψtis
(t, `)-equidistributed. A theoretical upper bound on t`is t
`
def
=bk/`c. We define
the dimension gap in resolution `as δ`=t
`t`. As measures of uniformity, we
consider the worst-case dimension gap and the sum of dimension gaps, defined as
= max
1`wδ`and ∆1=
w
X
`=1
δ`.
A small value of ∆1or ∆indicates good uniformity. A generator is called max-
imally equidistributed (ME) if ∆1= 0 [L’Ecuyer 1996]. ME generators have the
best possible equidistribution properties in terms of cubic equidissections.
4. PROPERTIES OF XORSHIFT GENERATORS
In this section, we examine some theoretical properties of xorshift matrices and show
how these properties affect the period length and the equidistribution of xorshift
generators.
4.1 General Properties
Our first proposition implies that to reach the maximal period 2rw 1, a xorshift
generator must contain both left and right xorshift matrices.
Proposition 4.1. If the nonzero matrices Aiare products and/or sums of either
all left or all right xorshift matrices, then P(z)cannot be irreducible, and therefore
cannot be primitive.
Proof. If the nonzero Ai’s are all products and/or sums of xorshift matrices on
the same side, then the matrix zrI+Pr
j=1 zrjAjis triangular, hence P(z) is the
product of its main diagonal, i.e. a product of z’s and (1 z)’s.
Consider a generator defined by (3)—(5) where Bhas an arbitrary w×wmatrix ˜
B
in its upper left corner and zeros elsewhere. Let Ψt(A,˜
B) denote the corresponding
ACM Journal Name, Vol. V, No. N, Month 20YY.
Xorshift Generators ·5
set Ψt. Our next result says that adding a right xorshift to the output of such a
generator preserves its equidistribution, and therefore does not change its values of
1and ∆.
Proposition 4.2. For `w, the set Ψt(A,(I+Ra)˜
B)is (t, `)-equidistributed
for 0< a < w if and only if Ψt(A,˜
B)is.
Proof. The t` bits that determine in which box of the (t, `)-equidissection the
point (u0, . . . , ut1) will fall are the `most significant bits of each of its coordinates.
Let y(t, `)=(y0,0, . . . , y0,`1, . . . , yt1,0, . . . , yt1,`1)Tbe the vector of those bits
and observe that y(t, `) = M(t, `)x0where M(t, `) is the t`×kbinary matrix whose
row `i +jis row jof BAi, for 1 j`and 0 it1. The set Ψtis (t, `)-
equidistributed if and only if each possibility for y(t, `) occurs the same number of
times when x0runs through all of its 2kpossibilities. This happens if and only if
the matrix M(t, `) has full rank, t`.
If we consider Ψt(A,˜
T˜
B) instead of Ψt(A,˜
B), where ˜
T=I+Ra, we must
redefine row `i +jof M(t, `) as row jof TBAi, where Tis a matrix with ˜
Tin
its upper-left corner and zeros elsewhere. This amounts to left-multiplying M(t, `)
by a block-diagonal t` ×t` matrix Dcomprised of tdiagonal blocks which are all
equal to the `×`upper-left corner of ˜
T. But for any a > 0, the matrix ˜
Tis
lower-triangular with ones all over its main diagonal, so Dalso has this property
and is thus invertible. Therefore, left-multiplying M(t, `) by Ddoes not change its
rank and this completes the proof.
Two matrices M1and M2are similar if there exists an invertible matrix Csuch
that M1=CM2C1. Similarity is an equivalence relationship, denoted M1M2.
Similar transition matrices Ahave the same characteristic polynomial and define
generators with the same period length. The next proposition exploits this fact to
derive several useful properties of xorshift matrices.
Proposition 4.3. Let H,H1,H2,H3,K1,K2,K3∈ {L,R}and such that Hi6=
Kifor i= 1,2,3. We have that:
(a) (I+La)(I+Ra);
(b) (I+Ha)(I+Hb) = (I+Hb)(I+Ha);
(c) (I+Hc
3)(I+Hb
2)(I+Ha
1)(I+Ha
1)(I+Hc
3)(I+Hb
2);
(d) (I+Hc
3)(I+Hb
2)(I+Ha
1)(I+Kc
3)(I+Kb
2)(I+Ka
1);
(e) if H1,H2and H3are not all the same matrix,
then (I+Hc
3)(I+Hb
2)(I+Ha
1)(I+Hc
3)(I+Ha
1)(I+Hb
2).
Proof. Let Pdenote the square matrix with ones on its main antidiagonal and
zeros elsewhere, i.e., the identity matrix with its columns in reverse order. We have
(I+La) = P(I+Ra)P1and this implies (a) and (d). Part (b) can be verified by
multiplying the terms on each side and using the fact that HaHb=Ha+b=HbHa.
For part (c), we have (I+Hc
3)(I+Hb
2)(I+Ha
1)(I+Ha
1)(I+Hc
3)(I+Hb
2)(I+
Ha
1)(I+Ha
1)1(I+Ha
1)(I+Hc
3)(I+Hb
2). Part (e) is left as an exercise to the
reader.
By using the properties listed in Proposition 4.3, one can easily show the following
proposition.
ACM Journal Name, Vol. V, No. N, Month 20YY.
6·F. Panneton and P. L’Ecuyer
Proposition 4.4. The eight matrices
X1= (I+Lc)(I+Rb)(I+La),X2= (I+La)(I+Rb)(I+Lc),
X3= (I+Rc)(I+Lb)(I+Ra),X4= (I+Ra)(I+Lb)(I+Rc),
X5= (I+Rb)(I+Lc)(I+La),X6= (I+Lb)(I+Ra)(I+Rc),
X7= (I+Lc)(I+La)(I+Rb),X8= (I+Ra)(I+Rc)(I+Lb),
where a, b, c are in {1, . . . , w 1}, are all similar.
Proof. Let Pbe as in the proof of Proposition 4.3 and Cj, 1 j8, be
the matrices such that X1=CjXjC1
j. Using Proposition 4.3, we show that:
C2= (I+La)1(I+Lc), C3=P,C4=P(I+Ra)1(I+Rc), C5= (I+Lc),
C6= (I+Lc)P,C7= (I+La)1and C8= (I+La)1P.
We will make use of this last proposition in our examination of the three types
of xorshift generators proposed by Marsaglia [2003].
4.2 Generators of type I
Because the matrices X1, . . . , X8are all similar, by finding a triple (a, b, c) for which
the generator based on X1has full period, we in fact identify eight full-period
generators. Marsaglia [2003] recognizes this fact (without providing a proof), but
only for the matrices X1, . . . , X6, and he includes the matrices (I+Rb)(I+La)(I+
Lc) and (I+Lb)(I+Rc)(I+Ra), which are in fact a repetition X5and X6.
The next proposition implies that to verify the equidistribution of all type I
generators defined by a triple (a, b, c), we only need to verify the equidistribution
of the generators based on X1,X2,X3, and X5.
Proposition 4.5. For a given triple (a, b, c), the type I generators with A1=
X7and A1=X5have exactly the same equidistribution properties, and the type I
generators with A1equal to either X3,X4,X6, or X8also have exactly the same
equidistribution properties.
Proof. By (6), taking A1=X7and yi= (I+Rb)viis equivalent to using
the recurrence yi= (I+Rb)X7(I+Rb)1yi1= (I+Rb)(I+Lc)(I+La)(I+
Rb)(I+Rb)1yi1=X5yi1. This means that Ψt(X5,I)=Ψt(X7,I+Rb) for
all t. It then follows from Proposition 4.2 that the generators with X7and X5
have identical equidistribution properties. A similar argument applies to the type
I generators produced by X3,X4,X6, and X8.
4.3 Generators of type II
A generator of type II is implemented via a special version of (2) which can be
written as:
vi=GvimHvir(7)
where Gand Hare w×wmatrices and denotes the bitwise exclusive-or operation.
We denote this generator by the triple (G,H, m). Property (6) implies that for a
given non-singular w×wmatrix C, (CGC1,CHC1, m) provides a full-period
generator if and only if (G,H, m) provides one.
Table I lists all possibilities of Gand H. They are grouped in a way that
within each group, they all have the same characteristic polynomial through the
ACM Journal Name, Vol. V, No. N, Month 20YY.
Xorshift Generators ·7
similarity matrix C. The last column indicates the generators having the same
equidistribution. Marsaglia [2003] only mentions generators for which G=G1=
(I+Rb)(I+La), H=H1= (I+Rc), and m= 1. The following theorem tells us
that it is worthless to search for full-period generators of type II with H=I.
Table I. List of possible combinations (G,H), regrouped in classes of generators having the same
period length.
iGiHiCEquidistribution
1 (I+Rb)(I+La) (I+Rc)Isame as i= 3
2 (I+Lb)(I+Ra) (I+Lc)P
3 (I+La)(I+Rb) (I+Rc) (I+Rb) same as i= 1
4 (I+Ra)(I+Lb) (I+Lc) (I+Lb)P
5 (I+Rc) (I+Rb)(I+La)Isame as i= 7
6 (I+Lc) (I+Lb)(I+Ra)P
7 (I+Rc) (I+La)(I+Rb) (I+Rb) same as i= 5
8 (I+Lc) (I+Ra)(I+Lb) (I+Lb)P
9 (I+Ra)(I+Rb) (I+Lc)I
10 (I+La)(I+Lb) (I+Rc)P
11 (I+Lc) (I+Ra)(I+Rb)I
12 (I+Rc) (I+La)(I+Lb)P
13–14 I Xj,j∈ {1,2}
15–16 I Xj,j∈ {5,7}See Section 4 same for i= 15,16
17–20 I Xj,j∈ {3,4,6,8}same for 17 i20
Theorem 4.6. Let Gbe any binary w×wmatrix where w > 1. The recurrence
(7) with H=Icannot have period length 2rw 1.
Proof. For nequal to any power of 2, we denote by Fnthe finite field with n
elements, Fw
nits w-fold cartesian product, and Fn[z] the space of polynomials with
coefficients in Fn. Let Q(z) = det(GIz) be the characteristic polynomial of G
over F2and suppose that Q(z) is irreducible over F2. Let ηF2wbe a root of
Q(z). The elements 1, η, . . . , ηw1form a basis of F2wover F2.
We can show (see the proof of Theorem 2 in Matsumoto and Kurita 1992) that
for a nonzero vector in tFw
2, the homomorphism
φ:F2wFw
2
ηl7→ Glt,
where 0 6=tFw
2is fixed, is also an isomorphism. By applying the inverse of φto
recurrence (7), we obtain the linear recurrence
φ1(xi) = φ1(Gxim) + φ1(xir),
which can be rewritten as the following linear recurrence in F2w:
xi=ηxim+xir,(8)
where xi=φ1(xi)F2w, because φ1(Gxim) = ηxim(see Theorem 2 in Mat-
sumoto and Kurita 1992). Notice that (7) and (8) have the same period length.
ACM Journal Name, Vol. V, No. N, Month 20YY.
8·F. Panneton and P. L’Ecuyer
The characteristic polynomial over F2wof (8) is
P(z) = zrηzrm1F2w[z]
By Theorem 3.18 of Lidl and Niederreiter [1994], because (1)rP(0) = (1)r+1 is
not a primitive element of F2w, the polynomial P(z) is not primitive over F2w. This
implies that the period of (8) cannot be 2rw 1, and similarly for (7).
Now, suppose that Q(z) is not irreducible. Let q=rm. We know that
P(z) = det(zrIzqGI) = det(zq(zmIGzqI))
= det(zqI) det((zmzq)IG)
=zwq Q(zmzq)F2[z]
Notice that Q(zmzq) is not in F2[z], so we do not know yet if P(z) is irreducible
over F2or not. On the other hand, Q(zmzq)L2where L2is the field of
formal Laurent series with coefficients in F2. Because Q(z) is not irreducible, we
can decompose it in c > 1 factors Qi(z)F2[z], each of degree di>0.
Let h(z) = hnzn+hn1zn1+· · · L2. We define the function p(h(z)) =
min{i:hi6= 0}. For h(z)L2to be in F2[z], it is necessary that p(h(z)) 0.
Observe that, because Q(z) is of degree w, we have that w=d1+· · · +dcand
p(Qi(zm+zq)) = qdi. Let ¯
Qi(z) = zqdiQi(zm+zq). Then, p(¯
Qi(z)) = 0,
which implies that ¯
Qi(z)F2[z]. We can develop
zwq Q(zmzq) = zwq
c
Y
i=1
Qi(zmzq)
=
c
Y
i=1
zqdiQi(zmzq)
=
c
Y
i=1
¯
Qi(z).
The last equality implies that P(z) is not irreducible over F2because it can be
decomposed in c > 1 factors ¯
Qi(z)F2[z], i= 1, . . . , c. This shows that if Q(z)
is not irreducible over F2, then neither is P(z), and (8) cannot have the maximal
period 2rw 1 in that case.
So far, we have discussed the choice of Hand G, but not the choice of m. For
the case where G=I, conditions on mfor the recurrence (7) to have full period
2rw 1 can be found in Matsumoto and Kurita [1992]. In the case where both
mand rare even, we have never encountered a full-period generator of type II,
despite making exhaustive searches for r= 4, 8, and 12. So we conjecture that one
cannot have full period in this case, but we have no proof.
4.4 Generators of type III
The generators of type III are based on the recurrence
vn= (I+Ha1
1)vnm1(I+Ha2
2)vnm2(I+Ha3
3)vnr(9)
where Hi∈ {L,R},ai< w, and 1 ir. We denote this variant by (H1,H2,H3,
m1, m2, a1, a2, a3). If (H1,H2,H3, m1, m2, a1, a2, a3) provides a generator of max-
ACM Journal Name, Vol. V, No. N, Month 20YY.
Xorshift Generators ·9
imal period then so does (K1,K2,K3, m1, m2, a1, a2, a3) where Ki6=Hiand Ki
{L,R}, by the similarity matrix C=P.
5. SPECIFIC GENERATORS PROPOSED BY MARSAGLIA
Marsaglia [2003] lists all parameters (a, b, c) that yield full-period type-I xorshift
generators with w= 32 and w= 64. We have checked his results and they are
correct except for what seems to be a typo: for w= 32, (a, b, c) = (9,5,1) should
read (a, b, c) = (9,5,14). For the type-II and type-III generators, Marsaglia pro-
vides only a few sets of parameters. In the following subsections, we analyze the
equidistribution and statistical properties of some generators he proposed.
5.1 Equidistribution properties
We computed the values of ∆1for all type-I full-period generators with w= 32 and
w= 64; they are listed in Panneton [2004]. These values range from ∆1= 1 (good
equidistribution) to ∆1= 153 (very bad). For example, a type-I generator qualified
by Marsaglia as one of his “favorites” is based on X2with (a, b, c) = (5,17,13) and
w= 32. This generator has ∆1= 2, a good value. Another interesting example
is the type-I generator based on X4with (a, b, c) = (7,1,9). This generator has
1= 1, the best value of all type-I generators with w= 32, but if we change X4
to X3with the same parameters (a, b, c), i.e., simply change the order in which the
two right xorshifts are performed, we get ∆1= 56, which is the worst possible value
when w= 32. This illustrates the fact that the behavior of a generator based on
a given triple (a, b, c) and given transition matrix Xidoes not help predicting the
behavior of another generator with the same triple but a different choice of Xi.
All type-II and type-III generators proposed by Marsaglia with w= 32 have
rather poor values of ∆1. For example, the type-II generator ((I+R1)(I+L2),(I+
R4),1) with r= 5 has ∆1= 164, the type-II generator ((I+R1)(I+L10 ),(I+
R26),1) with r= 3 has ∆1= 81, and the type III generator (L,R,L,1,2,6,19,3)
with r= 3 has ∆1= 69.
5.2 Statistical Testing
We have applied the batteries of empirical statistical tests SmallCrush and Crush
implemented in the software package TestU01 [L’Ecuyer and Simard 2001b] to
several xorshift generators proposed by Marsaglia [2003]. All tests included in
these batteries look for evidence against the null hypotheses H0that the generator
produces i.i.d U(0,1) random variables. These two batteries run in about one
minute and one hour, respectively, on a standard PC. None of the proposed xorshift
generators passed all these tests and most of them even failed the “baby” battery
SmallCrush in a spectacular way.
In what follows, we describe a few of these tests and give concrete illustrations
of the results.
The maximum-of-ttest (see Knuth 1998, page 70) generates nsequences of t
values in [0,1] and computes the maximum Xof the tvalues for each sequence.
The interval [0,1] is partitioned into dsegments in a way that under H0,Xfalls in
any given segment with probability n/d. The empirical and theoretical frequencies
of the dsegments are then compared via a chi-square test statistic. The p-value
of this test is defined as the probability that the chi-square statistic takes a value
ACM Journal Name, Vol. V, No. N, Month 20YY.
10 ·F. Panneton and P. L’Ecuyer
Table II. List of tests from TestU01 used in this paper
Num. Name Parameters
1 Maximum-of-t N = 10, n= 107,τ= 0, d= 5 ×105,t= 5
2 Birthday spacings N= 5, n= 107,τ= 14, d= 28,t= 8, p= 1
3 Indep. Hamming weights n= 108,τ= 20, s= 10, L= 30
4 Matrix rank n= 106,τ= 20, s= 10, L= 90
5 Matrix rank n= 50000, τ= 20, s= 10, L= 300
larger or equal to the one observed, under H0. For a two-level test, this is repeated
Ntimes and the empirical distribution of the N p-values thus obtained is compared
to the uniform distribution via a Kolmogorov-Smirnov test, whose p-value (at the
second level) is taken as the final p-value of the test. In Crush, we find this test
with the parameters given in the first row of Table II (test number 1).
The birthday spacings test [Marsaglia 1985; L’Ecuyer and Simard 2001a] parti-
tions [0,1]tinto dtsubcubes of equal sizes, numbers them from 0 to k1 in a
natural order, and throws npoints into [0,1]tusing tsuccessive uniform random
numbers for each point. Let I1I2≤ · ·· ≤ Inbe the (sorted) numbers of cells in
which the points fall. The test computes the differences Ij+1 Ij, for 1 j < n,
and counts the number Yof collisions between these differences. Under H0,Yis
approximately Poisson with mean λ=n3/(4k). This process is repeated Ntimes
“independently” and the p-value of the test is defined as the probability that a
Poisson random variable with mean Nλ takes a value larger or equal to the sum of
the Nobserved values of Y. In a slight generalization of the test, each output value
uof the generator (a real number between 0 and 1) is replaced by 2τumod 1 before
these numbers are used to determine the box number. The effect of this is to skip
the first τbits of each output value of the generator and take the following ones.
This generalization applies to the other tests of Table II as well. Crush contains
this test with τ= 14, t= 8, d= 28,n= 107, and N= 5. So it uses bits 15 to 22
of 8 successive uniforms to determine the box number of each point, assuming that
bit 1 is the most significant bit. This is test number 2 in Table II.
The independence of Hamming weights test [L’Ecuyer and Simard 1999] takes s
successive bits, say bits τ+1 to τ+s, from each of 2ndL/sesuccessive uniforms, and
concatenates these bits to construct 2nblocks of Lbits. Let Xjbe the Hamming
weight (the numbers of bits equal to 1) of the jth block, for j= 1, . . . , 2n. Each
vector (Xj, Xj+1) can take (L+ 1) ×(L+ 1) possible values. The test counts
the number of occurrences of each possibility among the non-overlapping pairs
{(X2j1, X2j),1jn}, and compares these observations with the expected
numbers under H0, via a chi-square test, after lumping together in a single class
all classes for which the expected number is less than 10. This is test number 3 in
Table II.
The matrix rank test generates nrandom L×Lbinary matrices, computes their
ranks, and compares the empirical distribution of these ranks with their theoretical
distribution under H0via a chi-square test [Marsaglia 1985; L’Ecuyer and Simard
2001a]. Each matrix is filled up line by line by taking s-bit blocks from L2/s
successive uniforms (assuming that sdivides L). Tests 4 and 5 in Table II are of
this type. These tests skip the τ= 20 most significant bits of each output value and
ACM Journal Name, Vol. V, No. N, Month 20YY.
Xorshift Generators ·11
uses the s= 10 bits that follow. With a xorshift generator, the rank of the matrix
cannot exceed the degree k=rw of P(z), so we expect all xorshift generators to
fail this test when L > rw. But in many cases, we observed decisive failures for L
much smaller than kw.
We tested all full-period type-I generators with A1=X1, for w= 32 and w= 64.
All type-I generators with w= 32 and about half of those with w= 64 had a p-
value smaller than 10300 for at least one test of SmallCrush. This can certainly
be called a spectacular failure! All but two of the generators of type II proposed
in Marsaglia [2003] failed a maximum-of-ttest found in SmallCrush (with t= 6,
d= 105,τ= 0, and n= 2 ×106) with a p-value smaller than 10300, and the
other two failed other tests in SmallCrush or Crush. The generator qualified by
Marsaglia as one of his “favorites” had p-values smaller than 10164 for all five tests
of Table II.
The type II generator ((I+R1)(I+L2),(I+R4),1) with r= 5 has the p-value
of p= 3.6×109in test 2. The one with ((I+R1)(I+L10),(I+R26),1) and r= 3
gets p= 1.9×10165 for test 1 and p < 10300 for test 3. The type-III generator
proposed by Marsaglia [2003], which has (L,R,L,1,2,6,19,3) and r= 3, gets
p= 1.6×1096 for test 1.
6. A SEARCH FOR BETTER XORSHIFT GENERATORS
We made a search for good full-period generators of types II and III with re-
spect to the equidistribution criterion ∆1with the constraint that the number of
xorshifts cannot exceed 3, as for most generators proposed in Marsaglia’s paper.
We tested empirically the best generators we found, by applying SmallCrush and
Crush [L’Ecuyer and Simard 2001b].
Table III lists the best generators of type II we found, with respect to ∆1, in
an exhaustive search among those with w= 32 and r= 2,3,4,5,8,12,25. The
best ones have reasonably good values of ∆1if we compare with other well-known
generators. For example, for r= 25 and w= 32, we have one with ∆1= 123,
which compares advantageously with the TT800 generator of Matsumoto and Kurita
[1994], for which ∆1= 261.
We applied SmallCrush and Crush to all generators listed in Table III. The
number p3in the table is the p-value for test number 3 of Table II. The symbol
means “smaller than 10300” and a blank indicates a p-value between 0.01 and
0.99. For r5, all but one generator fail this test spectacularly. This means that
there is significant dependence between the Hamming weights of successive numbers
produced by these generators. Many of these generators also failed the matrix rank
tests of Table II. For example, two of the generators with rw = 25 ×32 = 800
failed Test 5 and three of those with rw = 12 ×32 = 384 failed Test 4, both with
ap-value smaller than 10300.
Three generators in Table III passed all the tests of SmallCrush and Crush: these
are generators 22, 28, and 29. In view of the weaknesses of the other generators of
the same family and same (or slightly smaller) period, we cannot recommend them
for simulation purposes.
We also made an exhaustive search for good generators of type III with respect
to ∆1, with w= 32 and r= 2,3,4,5,8,12,25, and tested the best ones with
ACM Journal Name, Vol. V, No. N, Month 20YY.
12 ·F. Panneton and P. L’Ecuyer
Table III. Value of ∆1for the best generators of type II with w= 32 and r= 2,3,4,5,8,12,25.
Num. r m H G 1p3
1 2 1 (I+L11) (I+R13 )(I+L19) 4 106
2 2 1 (I+L11) (I+L19 )(I+R13) 7 109
3 2 1 (I+R8)(I+L9) (I+L22) 7
4 2 1 (I+L11)(I+R9) (I+L17 ) 7
5 3 1 (I+L23) (I+R4)(I+L13 ) 11
6 3 1 (I+L23) (I+L11 )(I+R7) 12
7 3 1 (I+L23) (I+R7)(I+L11 ) 12
8 3 1 (I+L18) (I+R5)(I+L13 ) 13
9 4 1 (I+R7)(I+L11) (I+L20 ) 13
10 4 1 (I+R7)(I+L11) (I+L19) 17
11 4 1 (I+L17) (I+R5)(I+L12) 17
12 4 1 (I+L19) (I+R15)(I+L7) 19
13 4 1 (I+L11)(I+R7) (I+L19) 19
14 5 1 (I+R7)(I+L11) (I+L20) 18
15 5 1 (I+R6)(I+L11) (I+L20) 19
16 5 3 (I+L9)(I+R6) (I+L20) 25
17 5 3 (I+R6)(I+L9) (I+L20) 25
18 8 3 (I+R13)(I+L19) (I+L8) 45
19 8 3 (I+R14)(I+L17) (I+L8) 48
20 8 1 (I+R7)(I+L15) (I+L10) 52
21 8 1 (I+R11)(I+L8) (I+L21) 54
22 12 5 (I+L21)(I+R11 ) (I+L6) 74
23 12 5 (I+R6)(I+L7) (I+L22) 79
24 12 1 (I+R8)(I+L7) (I+L18) 84
25 12 5 (I+L7)(I+R6) (I+L22) 90
26 25 9 (I+R8)(I+L11) (I+L18 ) 123
27 25 9 (I+L11)(I+R8) (I+L18 ) 137
28 25 7 (I+L20) (I+R13 )(I+L5) 155
29 25 2 (I+L10) (I+R13 )(I+L19) 158
SmallCrush and Crush. Almost all those with r8 have failed at least one of
the tests, whereas all those with r12 passed all the tests in these batteries.
The parameters of the latter generators are given in Table IV. All generators with
r= 25 in that table have a smaller value of ∆1than TT800, but slightly larger than
for the best generators of type II. Although these generators behave better than
those of type II in the statistical tests, we are not enthusiastic to recommend them
for simulation, because those of (already large) period lengths 28×32 1 = 2256 1
fail the tests decisively, which is not reassuring.
7. INCREASING THE NUMBER OF XORSHIFTS
So far we restricted ourselves to generators with only three xorshift operations, as
in Marsaglia’s paper. An obvious idea for improving the statistical robustness is
to increase the number of xorshifts. In this context, it is important to note that
an a-bit left [right] xorshift does not modify the aleast [most] significant bits. For
this reason, if we decide to have several xorshifts and if we care about the least
ACM Journal Name, Vol. V, No. N, Month 20YY.
Xorshift Generators ·13
Table IV. Value of ∆1for the best generators of type III with w= 32 and r= 12,25.
Num. r m2m1Ha2
2Ha1
1Ha3
31
31 12 2 3 L7R11 L21 96
32 12 5 11 L5L18 R11 100
33 12 7 9 L18 R11 L5102
34 12 5 10 L5L18 R11 103
35 25 4 10 L21 R11 L7186
36 25 5 24 L5R11 L18 188
37 25 7 24 L5R11 L18 190
38 25 5 16 L19 R11 L5219
significant bits as well as the most significant ones, there should be a good balance
between the numbers of left and right xorshifts. On the other hand, our criterion
1gives more importance to the most significant bits than to the least significant
ones, because of the way equidistribution is defined. For this reason, computer
searches based on ∆1tend to return generators having mostly left xorshifts and
very few right xorshifts. To balance the two types of xorshifts in a search based on
1, we must impose constraints on their respective numbers. Another possibility
would be to modify the criterion ∆1to take into account the equidistribution of
the low-order bits. We leave this as a topic for further investigation.
We performed a computer search for full-period xorshift generators with w= 32,
order r= 8, s= 7 xorshifts with at least 3 right ones, and the smallest possible ∆1.
These generators have period length 2256 1 and the best we found have ∆1= 9.
One of them has recurrence vn= (I+L9)(I+L13)vn1+ (I+L7)vn4+ (I+
R3)vn5+(I+R10)vn7+ (I+L24)(I+R7)vn8and its characteristic polynomial
P(z) has 131 nonzero coefficients. A C implementation of this generator in given
in Figure 1.
In a similar search for s= 13 and the same values for the other parameters, the
best we found also has ∆1= 9 and 129 nonzero coefficients in its characteristic
polynomial. Its recurrence is: vn= (I+L17)vn1+ (I+L10 )vn2+ (I+R9)(I+
L17)vn4+ (I+R3)vn4+ (I+R12 )vn5+(I+R25)vn5+ (I+R3)(I+R2)vn6+
(I+R27)vn7+ (I+R22 )vn7+ (I+L24)(I+R3)vn8. These two generators pass
all the tests in Crush. On the other hand, they obviously fail matrix rank tests for
L > 256 and tests based on linear complexity, because their bit sequences follow
linear recurrences of order 256, modulo 2.
For comparison, we made a similar search without any constraint on the number
of right xorshifts, with s= 13 and r= 7. The best generator we found had ∆1= 1
but a single right xorshift for 12 left xorshifts, and it failed test 4 in Table II.
Brent [2004b] recently proposed type-II xorshift generators based on the recur-
rence
vi= (I+Rd)(I+Lc)vim(I+Rb)(I+La)vir,(10)
with four xorshift operations, and the parameters given in Table V. We computed
the equidistribution of these generators and their values of ∆1, given in the table, are
not particularly good. We submitted them to the Crush battery, and the first two
failed the matrix-rank tests of Table II, but the other ones (with r8 and period
ACM Journal Name, Vol. V, No. N, Month 20YY.
14 ·F. Panneton and P. L’Ecuyer
static unsigned int x[8]; /* Generator’s state.*/
/* Initializes state.*/
void initxorshift7 (unsigned int *init) {
int j;
for (j=0; j<8; j++) x[j] = init[j];
}
/* Advances by one step and returns a number in [0,1).*/
double xorshift7 (void) {
static int k = 0;
unsigned int y, t;
t = x[(k+7) & 0x7U]; t = t ^ (t<<13); y = t ^ (t<<9);
t = x[(k+4) & 0x7U]; y^= t ^ (t<<7);
t = x[(k+3) & 0x7U]; y^= t ^ (t>>3);
t = x[(k+1) & 0x7U]; y^= t ^ (t>>10);
t = x[k]; t = t ^ (t>>7); y^= t ^ (t<<24);
x[k] = y; k = (k+1) & 0x7U;
return ((double) y * 2.32830643653869628906e-10 );
}
Fig. 1. A C implementation of a seven-xorshift generator
length ρ2256 1) passed all the tests. Brent recognizes the potential weaknesses
of these xorshift generators and proposes an implementation that incorporates a
combination with a Weyl generator, with the hope that this improves the quality.
Table V. Values of ∆1for the type II generators of the form (10) proposed by Brent.
r m a b c d 1
2 1 17 14 12 19 7
4 3 15 14 12 17 34
8 3 18 13 14 15 58
16 1 17 15 13 14 142
32 15 19 11 13 16 141
64 59 19 12 14 15 465
128 95 17 12 13 15 845
132 67 15 14 13 18 1838
140 19 17 13 15 16 2038
To see how the number of xorshifts affects the speed of the generators, we im-
plemented generators of types I, II, and III with three xorshifts, as well as the
generators described above with 4, 7, and 13 xorshifts. To generate 109(one bil-
lion) uniform random numbers in [0,1) and add them up, it took approximately 32
seconds for the fastest generators (type I with three xorshifts) and 38 seconds with
the slowest one (13 xorshifts). So adding xorshifts does not slow down the generator
significantly in comparison with the time for the function call, transformation into
a real number, and adding the numbers. The timings with the Mersenne twister
of Matsumoto and Nishimura [1998] and the WELL generators of Panneton et al.
ACM Journal Name, Vol. V, No. N, Month 20YY.
Xorshift Generators ·15
[2005] are about the same. These timings are for a 2.8Ghz Intel Pentium 4 processor
running Linux and the gcc compiler with the -O2 optimization flag.
8. CONCLUSION
We have studied both theoretically and empirically the xorshift generators proposed
by Marsaglia. These generators are fast, but not reliable, according to our analysis.
Those of type I are doomed right from the start because of their short period length.
The other ones also have problems when the number of xorshifts is restricted to
three. To get over these limitations, one may want to use a larger number of
xorshifts together with a long period. To get rid of the linear structure of the output
sequence and further improve the statistical robustness, these xorshift generators
could be combined with other RNGs from different classes. Preferably, this should
be supported by some theoretical analysis of the point set Ψtof the combined
generator, e.g., as in L’Ecuyer and Granger-Pich´e [2003].
ACKNOWLEDGMENTS
This work has been supported by the Natural Sciences and Engineering Research
Council of Canada (NSERC) Grant Number ODGP0110050, NATEQ-Qu´ebec grant
Number 02ER3218, and a Canada Research Chair to the second author. The first
author benefited from NSERC and NATEQ scholarships. We thank Richard Simard
for his help in improving the presentation and running the statistical tests.
REFERENCES
Brent, R. P. 2004a. Note on Marsaglia’s xorshift random number generators. Journal of Sta-
tistical Software 11, 5, 1–4. See http://www.jstatsoft.org/v11/i05/brent.pdf.
Brent, R. P. 2004b. Some uniform and normal random number generators. http://web.comlab.
ox.ac.uk/oucl/work/richard.brent/random.html.
Fushimi, M. and Tezuka, S. 1983. The k-distribution of generalized feedback shift register
pseudorandom numbers. Communications of the ACM 26, 7, 516–523.
Knuth, D. E. 1998. The Art of Computer Programming, Volume 2: Seminumerical Algorithms,
Third ed. Addison-Wesley, Reading, Mass.
L’Ecuyer, P. 1996. Maximally equidistributed combined Tausworthe generators. Mathematics
of Computation 65, 213, 203–213.
L’Ecuyer, P. 2004. Random number generation. In Handbook of Computational Statistics, J. E.
Gentle, W. Haerdle, and Y. Mori, Eds. Springer-Verlag, Berlin, 35–70. Chapter II.2.
L’Ecuyer, P. and Granger-Pich´
e, J. 2003. Combined generators with components from differ-
ent families. Mathematics and Computers in Simulation 62, 395–404.
L’Ecuyer, P. and Simard, R. 1999. Beware of linear congruential generators with multipliers of
the form a=±2q±2r.ACM Transactions on Mathematical Software 25, 3, 367–374.
L’Ecuyer, P. and Simard, R. 2001a. On the performance of birthday spacings tests for certain
families of random number generators. Mathematics and Computers in Simulation 55, 1–3,
131–137.
L’Ecuyer, P. and Simard, R. 2001b. Testu01: Un logiciel pour appliquer des tests statistiques
`a des g´en´erateurs de valeurs al´eatoires. Unpublished software user’s guide.
Lidl, R. and Niederreiter, H. 1994. Introduction to Finite Fields and Their Applications,
Revised ed. Cambridge University Press, Cambridge.
Marsaglia, G. 1985. A current view of random number generators. In Computer Science and
Statistics, Sixteenth Symposium on the Interface. Elsevier Science Publishers, North-Holland,
Amsterdam, 3–10.
ACM Journal Name, Vol. V, No. N, Month 20YY.
16 ·F. Panneton and P. L’Ecuyer
Marsaglia, G. 2003. Xorshift RNGs. Journal of Statistical Software 8, 14, 1–6. See http:
//www.jstatsoft.org/v08/i14/xorshift.pdf.
Matsumoto, M. and Kurita, Y. 1992. Twisted GFSR generators. ACM Transactions on
Modeling and Computer Simulation 2, 3, 179–194.
Matsumoto, M. and Kurita, Y. 1994. Twisted GFSR generators II. ACM Transactions on
Modeling and Computer Simulation 4, 3, 254–266.
Matsumoto, M. and Nishimura, T. 1998. Mersenne twister: A 623-dimensionally equidistributed
uniform pseudo-random number generator. ACM Transactions on Modeling and Computer
Simulation 8, 1, 3–30.
Niederreiter, H. 1992. Random Number Generation and Quasi-Monte Carlo Methods. SIAM
CBMS-NSF Regional Conference Series in Applied Mathematics, vol. 63. SIAM, Philadelphia.
Niederreiter, H. 1995. The multiple-recursive matrix method for pseudorandom number gen-
eration. Finite Fields and their Applications 1, 3–30.
Panneton, F. 2004. Construction d’ensembles de points bas´ee sur des r´ecurrences lin´eaires dans
un corps fini de caract´eristique 2 pour la simulation Monte Carlo et l’int´egration quasi-Monte
Carlo. Ph.D. thesis, D´epartement d’informatique et de recherche op´erationnelle, Universit´e de
Montr´eal, Canada.
Panneton, F.,L’Ecuyer, P.,and Matsumoto, M. 2005. Improved long-period generators based
on linear recurrences modulo 2. ACM Transactions on Mathematical Software. to appear.
Submitted November 23, 2004; Revised October 3, 2005.
ACM Journal Name, Vol. V, No. N, Month 20YY.
... It is used not only at the preliminary stages of designing complex technological systems and 1 Engineering Science Ph.D., National University "Odessa Law Academy", associate professor at the department of information technology, shcherbinayura53@gmail.com 2 Prof. D.Sc., Odesa State Environmental University, Head of Department of information technology, kaz2003@ukr.net 3 Engineering Science Ph.D., Odesa State Environmental University, associate professor at the department of information technology, frazenko@gmail.com processes, but also allows for optimization and experimental evaluation of their constituent parts during tests. ...
... Modeling experience shows that any unevenness significantly affects the quality of the process at the output of the computer model. At the moment, there are a large number of methods for generating high-quality pseudorandom number generators, which include the MT generator, known as the Mersenne twister, MT, [2], Xorshift [3], linear congruent generator (LCG) [4] and many others. They output 32-bit or 64-bit numbers in [0, 2 32) and [0, 2 64) intervals. ...
... Xorshift is a successor of the Linear-Feedback Shift Registers (LFSR) family, which is explained in Algorithm 2. The recent implementation of Xorshift makes it very fast since it avoids the use of excessively sparse polynomials [35], and non-linear operations. It is highly efficient, however, it fails certain statistical tests [35]. ...
... Xorshift is a successor of the Linear-Feedback Shift Registers (LFSR) family, which is explained in Algorithm 2. The recent implementation of Xorshift makes it very fast since it avoids the use of excessively sparse polynomials [35], and non-linear operations. It is highly efficient, however, it fails certain statistical tests [35]. In the proposed scheme, this issue is resolved through the use of dynamic bit rotation to achieve the desired non-linearity degree. ...
Article
Full-text available
Recently, there has been a dire need for lightweight cryptographic solutions, which exhibit low computational complexity and require few resources. In this paper, we present LESCA, a novel dynamic key-dependent lightweight stream cipher, which consists of two main functions, a typical round function based on cryptographic primitives, and a function that updates these primitives. The update is performed in a selective (partial) manner while encrypting a block, and in full after each δ blocks/iterations. As such, LESCA consumes minimal resources and introduces a very low latency. The originality of this solution stems from the fact that the cryptographic primitives get updated even when encrypting the same message. Several performance and security tests were performed to confirm that the proposed cipher is robust and efficient, especially for limited devices and real-time applications. The proposed cipher achieves a high throughput; for example, when implemented on a Raspberry Pi (RPI4) device, LESCA provides an enhancement of at least 343% when compared to the Advanced Encryption Standard (AES), 72% over a recent one-round cipher scheme, and 43% improvement compared to a recent LORCA stream cipher that outperforms the Simon and Speck algorithms.
... XorShift64 belongs to the Linear-Feedback Shift Registers (LFSR) PRNG functions and is described in Algorithm 6. In modern processor architectures, XorShift64 is extremely fast due to its efficient implementation without the excessive use of sparse polynomials [69]. Due to the fact that XorShift64 generators do not include non-linear steps, they are prone to fail certain statistical tests [69]. ...
... In modern processor architectures, XorShift64 is extremely fast due to its efficient implementation without the excessive use of sparse polynomials [69]. Due to the fact that XorShift64 generators do not include non-linear steps, they are prone to fail certain statistical tests [69]. However, they still have numerous advantages such as simple implementation and low execution time. ...
Article
Full-text available
The Internet of Vehicles (IoV) is a disruptive technology that has a great impact on people's lifestyle and activities. Fully autonomous vehicles are the next generation of connected cars. However, IoV systems suffer from several security threats that could offset the intended advantages. To address the security and privacy issues, several cryptographic and non-cryptographic security solutions should be adopted. However, traditional security solutions might burden the IoV network with further complexity and computational overhead. This would translate into additional performance issues in a network already suffering from big data and large-scale challenges. In this context, lightweight security solutions are needed to reduce the required resources in terms of computations, power and memory, and to optimize the network performance in terms of latency and bandwidth. In this paper, we propose a new lightweight cipher scheme, LoRCA, with dynamic key-dependent structure to provide data confidentiality with minimum resources' requirements. To validate our solution's robustness and efficiency within the IoV context, several performance and security tests were performed. The results show that the proposed solution strikes a good balance between the security level and performance. The proposed LoRCA ciphers achieve a high throughput with an enhancement of at least 100% improvement as compared to the Advanced Encryption Standard (AES), 358% compared to Simon, 388 % improvement for Speck and 24% improvement compared to our previous one round cipher scheme.
... Example 4.3 Fig 4.3 shows the dynamics where none of the rule's class dominates.Rule 105 belongs to Class III and rule 40 belongs to Class I.The TSCA(105,40)[0.6] shows periodic behavior (like Wolfram's Class II) (see ...
Preprint
Full-text available
In this dissertation, we study temporally stochasticity in cellular automata and the behavior of such cellular automata. The work also explores the computational ability of such cellular automaton that illustrates the computability of solving the affinity classification problem. In addition to that, a cellular automaton, defined over Cayley tree, is shown as the classical searching problem solver. The proposed temporally stochastic cellular automata deals with two elementary cellular automata rules, say $f$ and $g$. The $f$ is the default rule, however, $g$ is temporally applied to the overall system with some probability $\tau$ which acts as a noise in the system. After exploring the dynamics of temporally stochastic cellular automata (TSCAs), we study the dynamical behavior of these temporally stochastic cellular automata (TSCAs) to identify the TSCAs that converge to a fixed point from any seed. We apply each of the convergent TSCAs to some standard datasets and observe the effectiveness of each TSCA as a pattern classifier. It is observed that the proposed TSCA-based classifier shows competitive performance in comparison with existing classifier algorithms. We use temporally stochastic cellular automata to solve a new problem in the field of cellular automata, named as, affinity classification problem which is a generalization of the density classification problem . We show that this model can be used in several applications, like modeling self-healing systems. Finally, we introduce a new model of computing unit developed around cellular automata to reduce the workload of the Central Processing Unit (CPU) of a machine to compute. Each cell of the computing unit acts as a tiny processing element with attached memory. Such a CA is implemented on the Cayley Tree to realize efficient solutions for diverse computational problems.
... There is a wide diversity of pseudo-random number generators (PRNG) having been developed by the scientific community. Good examples of scientifically suitable random number generators include the Mersenne-twister [97], gfsr4 [155], Xorshift (with caution [110]), WELL [111]. The Mersenne-twister is actually one of the most widely used generators in scientific computing [79], 32 ...
Thesis
Full-text available
Stochastic and point processes are often used to model networks of spiking neurons. However, the number of neurons, even in a small mammal brain, is at least a few millions. There is therefore a strong need for efficient simulation algorithms. Nevertheless, traditional algorithms for point process simulation cannot simulate such large networks within a reasonable time and memory constraints.In this thesis, we introduce new simulation algorithms for large networks of point and stochastic processes. By using the time asynchrony of point processes, and discrete-event techniques from computer science, we managed to reduce the time complexity of the simulation algorithm from O(M^2 log(M)) to O(M log(M)), where M is the size of the network. The algorithm was successfully applied to reduce the execution time of large networks of Ornstein-Uhlenbeck processes and Hawkes processes.The new algorithm also displays a reduced memory complexity, from O(M^2) to O(M). However, the data structures for storing the connectivity matrices usually have a O(M^2) memory complexity. We proposed a new data structure for storing the connectivity matrix, based on its partial reconstruction when the simulation software needs access to one of the connections. This procedural connectivity is ensured by storing the internal state of a pseudo-random number generator, used to create the random connection matrix, instead of the connection matrix.With such a small imprint, our algorithm is able to simulate a network composed of millions of Hawkes processes within minutes, on a single core laptop computer, paving the way for easier study of brain-sized structures, and in particular functional connectivity inference.
... One of the extensively applied fundamental techniques in the area of information security is linear finite state machines (LFSMs). Among many of them, various applications related to cryptography rely on linear feedback shift registers (LFSRs) involving the composition of pseudo-random number generators (PRNGs) or stream cipher systems [3][4]. The length of the LFSR key is least and cannot afford higher confidentiality levels from the unlicensed users. ...
Chapter
Cloud computing has globally turned out to be one of the emerging techniques in the modern world that provides various services over the inter-networking systems. Among many of its applications, information storage over the Internet has gained considerable demand and immense popularity, and dependency on such service usage has increased over a wide range of users. We aim to develop a cloud infrastructure to ensure the confidentiality of any kind of information residing within its infrastructure to gain its legitimate user’s trust. To fulfill the objective of our research, we propose an innovative, intelligent framework to spawn a pseudo-random number secret key utilizing the combination of the feedback shift register and a genetic algorithm to intensify the key’s strength in terms of its length. The proposed system presented in this artifact the efforts to further enhance the sequence’s length by the able utilization of the genetic algorithm. We have carried out various statistical tests to uphold the strength of the generated key sequences. Amongst them, hybrid model generated a higher range of 13,425 subsequences, a chi-square value of 2.862 which is way better than a critical standard value of 7.81. We have also tested our system by using runs up down, runs below and above the mean test. As per the outcomes of the test, our hybrid model has achieved a hypothesis acceptance region for a run length of 317 and 241 with mean values of 333 and 244.1, respectively. The genetic algorithm usage further enhances the random keys’ strength by generating a long series of random numbers. Hence, the amalgamation of the feedback shift register and the genetic algorithm engenders a series of pseudo-random numbers that gratify randomness and the extension of the series’ length beyond the limit.
... The original paper [16] does not contain a straightforward mathematical definition. The interested are encouraged to read also [22] and [2]. In place of mathematical definition an example based on the implementation provided by the original paper [16] will be presented. ...
Preprint
Full-text available
Most random numbers used in computer programs are pseudorandom, which means they are generated in a predictable fashion using a mathematical formula. This is acceptable for many purposes, sometimes even desirable. In this paper we will take a look at few popular generators producing pseudorandom integers from continuous uniform distribution. Then we will use such generator to try to implement a generator producing numbers from interval ]0, 1[. And then, on its basis, generators of numbers from Bernoulli, binomial, Poisson, exponential and normal distributions.
Article
Randomness is an important issue for Internet of Things (IoT). The need to generate suitable random numbers for IoT devices with resource and size limitations has emerged due to the cryptographic protocols. Although random number generation approaches have been proposed considering IoT device constraints, commonly used software and hardware-based solutions have not been discussed in detail. The main contribution of this paper is the detailed examination of the problems encountered in random number generation in the IoT ecosystem and the proposed solution approaches. In this context, a classification has been proposed for hardware containing random number generator (RNG), which has different usage areas in IoT environments. Based on the presented classification, the characteristics of the devices in terms of resource constraints are examined. This classification serves as a guide for selecting suitable hardware in applications with or without random number needs. Also, basic RNGs and test suites are discussed. Some challenges are summarized by explaining the random numbers usage in the IoT environment. In addition, proposed random number generation scenarios for IoT devices are determined. Success rate analysis is carried out based on these techniques in terms of randomness tests. Software and hardware-based solution methods are detailed to meet the need for random numbers in real-world IoT applications. RNG algorithms actively used in IoT applications, basic working principles, usage areas, and hardware features are summarized. Finally, the problem that arises in generating random numbers in system-on-chip (SoC) systems, one of the proposed classification components, are summarized, and some precautions that can be taken are expressed.
Article
This paper targets to search so-called good generators by doing a brief survey over the generators developed in the history of pseudo-random number generators (PRNGs), verify their claims and rank them based on strong empirical tests in same platforms. To do this, the genre of PRNGs developed so far are explored and classified into three groups — linear congruential generator based, linear feedback shift register based and cellular automata based. From each group, the well-known widely used generators which claimed themselves to be ‘good’ are chosen. Overall 30 PRNGs are selected in this way on which two types of empirical testing are done — blind statistical tests with Diehard battery of tests, battery rabbit of TestU01 library and NIST statistical test-suite as well as graphical tests (lattice test and space–time diagram test). Finally, the selected PRNGs are divided into 24 groups and are ranked according to their overall performance in all empirical tests.
Article
Xorshift128+ is a newly proposed pseudorandom number generator (PRNG), which is now the standard PRNG on a number of platforms. We demonstrate that three-dimensional plots of the random points generated by the generator have visible structures: they concentrate on particular planes in the cube. We provide a mathematical analysis of this phenomenon.
Conference Paper
Full-text available
Random number generators were invented before there were symbols for writing numbers, and long before mechanical and electronic computers. All major civilizations through the ages found the urge to make random selections, for various reasons. Today, random number generators, particularly on computers, are an important (although often hidden) ingredient in human activity. In this article, we give a historical account on the design, implementation, and testing of uniform random number generators used for simulation.
Article
We carry out an in-depth analysis of the multiple-recursive matrix method for uniform pseudorandom number generation which was introduced in an earlier paper of the author. This method yields much larger period lengths than the GFSR method with the same order of the recursion and the same precision. Besides periodicity properties, we establish also uniformity properties of s-tuples of successive pseudorandom numbers generated by the multiple-recursive matrix method and we study the performance under the s-dimensional serial test. The uniformity properties and the behavior under the serial test depend on an appropriate figure of merit in the case where the dimension s exceeds the order of the recursion.
Article
Linear congruential random-number generators with Mersenne prime modulus and multipliers of the form a = ±2q ±2r have been proposed recently. Their main advantage is the availability of a simple and fast implementation algorithm for such multipliers. This note generalizes this algorithm, points out statistical weaknesses of these multipliers when used in a straightforward manner, and suggests in what context they could be used safely. Categories and Subject Descriptors: G.4 [Mathematics of Computing]: Mathematical Software - Algorithm design and analysis; 1.6 [Computing Methodologies]: Simulation and Modeling General Terms: Algorithms, Performance.
Article
The NSF-CBMS Regional Research Conference on Random Number Generation and Quasi-Monte Carlo Methods was held at the University of Alaska at Fairbanks from August 13–17, 1990. The present lecture notes are an expanded written record of a series of ten talks presented by the author as the principal speaker at that conference. It was the aim of this series of lectures to familiarize a selected group of researchers with important recent developments in the related areas of quasi-Monte Carlo methods and uniform pseudorandom number generation. Accordingly, the exposition concentrates on recent work in these areas and stresses the interplay between uniform pseudorandom numbers and quasi-Monte Carlo methods. To make these lecture notes more accessible to nonspecialists, some background material was added. Quasi-Monte Carlo methods can be succinctly described as deterministic versions of Monte Carlo methods. Determinism enters in two ways, namely, by working with deterministic points rather than random samples and by the availability of deterministic error bounds instead of the probabilistic Monte Carlo error bounds. It could be argued that most practical implementations of Monte Carlo methods are, in fact, quasi-Monte Carlo methods since the purportedly random samples that are used in a Monte Carlo calculation are often generated in the computer by a deterministic algorithm. This is one good reason for a serious study of quasi-Monte Carlo methods, and another reason is provided by the fact that a quasi-Monte Carlo method with judiciously chosen deterministic points usually leads to a faster rate of convergence than a corresponding Monte Carlo method. The connections between quasi-Monte Carlo methods and uniform pseudorandom numbers arise in the theoretical analysis of various methods for the generation of uniform pseudorandom numbers.