Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider the following random bit generator ( a LFSR of a sort slightly more general than the ones we have seen in class. ) Take

Consider the following random bit generator (a LFSR of a sort slightly more
general than the ones we have seen in class.)
Take an array of 32 cells, each holding one bit. The state of this generator
consists of the contents of this array, i.e. it consists of 32 bits. Define the following
operations on states of this generator:
o+ is the bitwise XOR operation i.e. the ith bit of x0cdotsx31o+w0cdotsw31 is
xio+wi
is the left shift so e.g.x0cdotsx312=x2cdotsx3100;
is the right shift so e.g.x0cdotsx313=000x0cdotsx28.
The generator is initialized by loading some choice of 32 bits into the state.
At each time step: we output the first bit x0, then replace the state x=x0cdotsx31
(where xi is the bit in cell i) with f(x) where
y=xo+(x13)
z=yo+(y17)
f(x)=zo+(z5).
e.g. starting with the state (0,dots,0,1), the output is 0 and the next state has
x13,x18,x26,x31=1(and all other bits 0). At the next step, the output is 0 and
the next state has x5,x12,x21,x22,x31=1(and all other bits 0).
(a) Find 32-by-32 matrices Y,Z, and F(with entries in Z2Z) such that y=Yx,
z=Zy, and f(x)=Fx(where all matrix operations are done mod2, and we
write the state as a column vector).
(b) Assume the first rows of the matrix powers F0=I,F1,dots,F31 are linearly
independent. Use this to show how to completely determine the state of this
generator (and hence all of its future output) from 32 known consecutive output
bits.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning Microsoft SQL Server 2012 Programming

Authors: Paul Atkinson, Robert Vieira

1st Edition

1118102282, 9781118102282

More Books

Students also viewed these Databases questions

Question

Sins 0S arccos

Answered: 1 week ago

Question

What are Measures in OLAP Cubes?

Answered: 1 week ago

Question

How do OLAP Databases provide for Drilling Down into data?

Answered: 1 week ago

Question

How are OLAP Cubes different from Production Relational Databases?

Answered: 1 week ago