Answer the following statements true (T) or false (F)

1. A widely used technique for pseudorandom number generation is an algorithm known as the linear congruential method.
2. A cryptographically secure pseudorandom bit generator is defined as one that passes the least significant bit test.
3. The security of Blum, Blum, Shub is based on the difficulty of factoring n.
4. The stream cipher is similar to the one-time pad with a difference being that a one-time pad uses a pseudorandom number stream and a stream cipher uses a genuine random number stream.
5. The longer the keyword the more difficult the cryptanalysis.

1. TRUE
2. FALSE
3. TRUE
4. FALSE
5. TRUE

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. The test condition in a While loop must always be an integer value. 2. A While loop repeats infinitely when there is no statement inside the loop body that will make the test condition false. 3. Modules can be called from statements in the body of any loop. 4. You can only use positive integers as step values in a For statement.

Computer Science & Information Technology

y and z are user-defined objects and the += operator is an overloaded member function. The operator is overloaded such that y += z adds z and y, then stores the result in y. Which of the following expressions is always equivalent to y += z?

a. y = y operator+= z b. y.operator+=(z) c. y = y + z d. y operator+=(y + z)

Computer Science & Information Technology