Answered You can hire a professional tutor to get the answer.
RSAREF PRNG The RSAREF PRNG works as following: List 4: RSAREF PRNG 1. State is kept in a 128 bit counter Ci; 2. process input Wi like below: Ci+1 =...
2. RSAREF PRNG The RSAREF PRNG works as following: List 4: RSAREF PRNG 1. State is kept in a 128 bit counter Ci; 2. process input Wi like below: Ci+1 = Ci + MD5(Wi) mod 2128 3. Generate output[i]: Output[i] = MD5(Ci) mod 2128 And refresh the counter for next state by Ci+1 = Ci + 1 mod 2128 . This PRNG is designed also following the same principles as DSA PRNG. Ci+1 = Ci + 1 mod 2128 Output[i] Figure 3: RSAREF PRNG Which is best?