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

Configure Feed

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

Wire.bool→Wire.bit rename; cfdp/ltp adopt wire; dune fmt

- CCSDS packages (aos, clcw, fsr, sdls, space-packet, tc, tm, uslp):
Wire.bool renamed to Wire.bit upstream; mechanical migration.
- ocaml-cfdp: adopt wire library for PDU header codec.
- ocaml-ltp: adopt wire library for segment header codec.
- ocaml-cop1: simplify interop test error formatting.
- dune fmt: reformat irmin, pus, scitt, crypto, tc/uslp 3D specs.
- monopam: add TODO.md tracking cram coverage gaps.

+4 -5
+2 -2
ec/crypto_ec.mli
··· 139 139 140 140 (** {2 Misc} *) 141 141 142 - (** Operations to precompute useful data meant to be hardcoded in 143 - [crypto-ec] before compilation *) 142 + (** Operations to precompute useful data meant to be hardcoded in [crypto-ec] 143 + before compilation *) 144 144 module Precompute : sig 145 145 val generator_tables : unit -> string array array array 146 146 (** Return an array of shape (Fe_length * 2, 15, 3) containing multiples of
+1 -1
rng/crypto_rng.mli
··· 29 29 is not thread-safe} (it is on Miou_unix via Pfortuna). 30 30 31 31 Suitable entropy feeding of generators is provided by 32 - {{!Crypto_rng_unix}crypto-rng.unix} (for Unix). The Mirage and Miou 32 + {{!Crypto_rng_unix}crypto-rng.unix} (for Unix). The Mirage and Miou 33 33 sub-libraries from upstream mirage-crypto have been dropped in this fork. 34 34 35 35 The intention is that "initialize" in the respective sub-library is called
+1 -2
rng/entropy.ml
··· 27 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 28 *) 29 29 30 - let src = 31 - Logs.Src.create "crypto-rng-entropy" ~doc:"Crypto RNG Entropy" 30 + let src = Logs.Src.create "crypto-rng-entropy" ~doc:"Crypto RNG Entropy" 32 31 33 32 module Log = (val Logs.src_log src : Logs.LOG) 34 33