Mirage_crypto_rng_mkernelRNG seeding on Mkernel.
val initialize : ?g:'a -> ?sleep:int -> 'a Mirage_crypto_rng.generator -> rnginitialize ~g ~sleep generator sets the default generator to the generator and sets up periodic entropy feeding for that rng. The argument sleep (default: 1 second) is measured in nanoseconds, and is the wait between two CPU-assisted entropy collection (using RDRAND).
val kill : rng -> unitkill rng cancels the periodic seeding and unsets the default random number generator.