Is it possible to reverse a pseudo random number generator?

前端 未结 2 1064
萌比男神i
萌比男神i 2021-02-05 22:02

Is it possible to reverse a pseudo random number generator? For example, take an array of generated numbers and get the original seed. If so, how would this be implemented?

2条回答
  •  不思量自难忘°
    2021-02-05 22:41

    This is absolutely possible - you just have to create a PRNG which suits your purposes. It depends on exactly what you need to accomplish - I'd be happy to offer more advice if you describe your situation in more detail.

    For general background, here are some resources for inverting a Linear Congruential Generator: Reversible pseudo-random sequence generator

    pseudo random distribution which guarantees all possible permutations of value sequence - C++

    And here are some for inverting the mersenne twister: http://www.randombit.net/bitbashing/2009/07/21/inverting_mt19937_tempering.html http://b10l.com/reversing-the-mersenne-twister-rng-temper-function/

提交回复
热议问题