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

Configure Feed

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

requests.h2: split DATA chunks when peer dribbles WINDOW_UPDATEs

Client used to wait for a full max_frame credit refill before each
DATA frame. Peers that grant smaller increments (e.g. Scaleway S3's
32712 vs our 32768) stalled at the 56-byte tail per cycle. Now
waits for a 4 KiB minimum then emits whatever credit is available,
splitting a chunk into multiple frames if needed. Add interop
regression (spec: dribbled_windows). Bottler shows upload bar in KiB.
ocaml-crypto ec/rng dunes: lib/c (src/c was renamed).

+2 -2
+1 -1
ec/dune
··· 12 12 p521_stubs 13 13 np521_stubs 14 14 curve25519_stubs) 15 - (include_dirs ../src/c) 15 + (include_dirs ../lib/c) 16 16 (flags 17 17 (:standard -DNDEBUG) 18 18 (:include cflags_optimized.sexp))))
+1 -1
rng/unix/dune
··· 20 20 (libraries crypto-rng unix logs threads.posix) 21 21 (foreign_stubs 22 22 (language c) 23 - (include_dirs ../../src/c) 23 + (include_dirs ../../lib/c) 24 24 (names mc_getrandom_stubs)) 25 25 (c_library_flags 26 26 (:include rng_c_flags.sexp)))