Giter VIP home page Giter VIP logo

mt19937-reversible's Introduction

mt19937-reversible

This is an educational-, research-, and CTF-oriented implementation of the Mersenne Twister PRNG, providing features such as recovering internal state from outputs, rewinding the internal state, or recovering the seed from a freshly seeded internal state.

There are may implementations of Mersenne Twister on the Internet, and even may implementations that allow cloning internal state. This one is better because:

  • Both 32-bit MT19937 and 64-bit MT19937-64 are implemented
  • A rewind feature is provided to "turn back time" on the PRNG
  • The value of the seed can be recovered from a freshly-seeded state
  • The code is written in a conceptually simple manner, making it easier to reason about. Performance does take a hit, though.

An example that demonstrates cloning a standard library random.Random is provided in the code, and also below:

def test_with_stdlib_random():
    import random
    stdlib_random = random.Random()
    mt = MT19937()
    output_for_cloning = [stdlib_random.getrandbits(mt.w) for _ in range(mt.n)]
    mt.clone_state_from_output(output_for_cloning)
    for _ in range(10000):
        assert stdlib_random.getrandbits(mt.w) == mt.get_next_random()
    print('Test successful')

Have fun!

mt19937-reversible's People

Contributors

twisteroidambassador avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.