package fluxt
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Extensions of flux to provide basic streams (compression, hash, format)
Install
dune-project
Dependency
Authors
Maintainers
Sources
flux-0.0.1.beta3.tbz
sha256=96eda206d7eacfb921d5a6bb459254d7f8c507bbc11aa27f1544fb5c73e204c7
sha512=97cf49978fc18946eef5579b004907b2f2a58dc2452446476545385b388eb04bde072020b7a55900be02405f71bebbc919a6039caf636f221167a5d9335ffcce
doc/src/fluxt.hash/flux_hash.ml.html
Source file flux_hash.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22open Digestif let of_module : type t. (module Digestif.S with type t = t) -> (string, t) Flux.sink = fun (module Hash) -> let init () = Hash.empty and push ctx str = Hash.feed_string ctx str and full = Fun.const false and stop = Hash.get in Flux.Sink { init; push; full; stop } let md5 = of_module (module MD5) let sha1 = of_module (module SHA1) let sha224 = of_module (module SHA224) let sha256 = of_module (module SHA256) let sha384 = of_module (module SHA384) let sha512 = of_module (module SHA512) let blake2b = of_module (module BLAKE2B) let blake2s = of_module (module BLAKE2S) let whirlpool = of_module (module WHIRLPOOL) let rmd160 = of_module (module RMD160) let keccak256 = of_module (module KECCAK_256)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>