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

Configure Feed

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

Merge pull request #105 from hannesm/random-device

MirageOS RANDOM module type requires RNG to have a buffer type

authored by

David Kaloper and committed by
GitHub
20a0e584 9fe499f9

+5
+3
src/nocrypto.mli
··· 631 631 let (a, b) = (arr.(i), arr.(j)) in 632 632 arr.(i) <- b ; arr.(j) <- a ]} 633 633 *) 634 + 635 + type buffer = Cstruct.t 636 + (** Type definition to satisfy MirageOS RANDOM signature *) 634 637 end 635 638 636 639
+2
src/rng.ml
··· 156 156 end 157 157 158 158 end 159 + 160 + type buffer = Cstruct.t