upstream: https://github.com/mirage/mirage-crypto
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

explain these a little

pqwy a2cb8400 9db974be

+10
+3
lwt/nocrypto_entropy_lwt.mli
··· 1 1 (** {b RNG} seeding on {b Lwt/Unix}. 2 2 3 + This module provides RNG seeding from the Unix kernel RNG, typically 4 + {[/dev/urandom]}. It uses {!Lwt} for periodic background reseeding. 5 + 3 6 Calling {{!initialize}initialize} is enough to bring the RNG into a working 4 7 state. In addition, a background task is set up to periodically reseed the 5 8 RNG.
+4
mirage/nocrypto_entropy_mirage.mli
··· 1 1 (** {b RNG} seeding on {b Mirage}. 2 2 3 + This module provides RNG seeding from Mirage entropy sources, typically 4 + originating from within the unikernel itself. On Unix, 5 + {!Nocrypto_entropy_lwt} should be used in preference. 6 + 3 7 Calling {{!initialize}initialize} should be enough to get a seeded RNG. 4 8 5 9 It is the responsibility of the Mirage platform to set up entropy harvesting
+3
unix/nocrypto_entropy_unix.mli
··· 1 1 (** {b RNG} seeding on {b Unix}. 2 2 3 + This module provides one-shot RNG seeding from the Unix kernel RNG, 4 + typically {[/dev/urandom]}. 5 + 3 6 Calling {{!initialize}initialize} is enough to bring the RNG into a working 4 7 state. 5 8