Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add randomness pool mode for V4 UUID #80

Merged
merged 2 commits into from Jul 8, 2021

Commits on May 18, 2021

  1. Add randomness pool mode for V4 UUID

    Adds an optional randomness pool mode for Random (Version 4)
    UUID generation. The pool contains random bytes read from
    the random number generator on demand in batches. Enabling
    the pool may improve the UUID generation throughput
    significantly.
    
    Since the pool is stored on the Go heap, this feature may
    be a bad fit for security sensitive applications. That's
    why it's implemented as an opt-in feature.
    puzpuzpuz committed May 18, 2021
    Copy the full SHA
    939aa6f View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2021

  1. Copy the full SHA
    9d84abf View commit details
    Browse the repository at this point in the history