??? 11/19/05 05:21 Read: times |
#103906 - This won't really help. Responding to: ???'s previous message |
Jacob Boyce said:
I had a similar problem until I ran the results from the pseudo-random generator into the pseudo-random generator again Two PRNGs back-to-back is still just a PRNG. And given the same input, the result is the same output. To avoid this problem you need to use either (or better both) of the techniques: (a) Include some distinguishing data in the PRNG, like device address or serial number. (b) Include some non-deterministic variation (real randomness), like the low order bit(s) of a high-speed timer taken during an unrelated interrupt. |