cryptonite-0.23: Cryptography Primitives sink

LicenseBSD-style
MaintainerVincent Hanquez <vincent@snarc.org>
Stabilityexperimental
PortabilityGood
Safe HaskellNone
LanguageHaskell2010

Crypto.Random.EntropyPool

Description

 

Synopsis

Documentation

data EntropyPool #

Pool of Entropy. Contains a self-mutating pool of entropy, that is always guaranteed to contain data.

createEntropyPool :: IO EntropyPool #

Create a new entropy pool with a default size.

While you can create as many entropy pools as you want, the pool can be shared between multiples RNGs.

createEntropyPoolWith :: Int -> [EntropyBackend] -> IO EntropyPool #

Create a new entropy pool of a specific size

While you can create as many entropy pools as you want, the pool can be shared between multiples RNGs.

getEntropyFrom :: ByteArray byteArray => EntropyPool -> Int -> IO byteArray #

Grab a chunk of entropy from the entropy pool.