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.beta2.tbz
sha256=dbfb198a16aab3f8987cc2ba31bc8da3720b9031d2b6b1a3313e6c1342cbf4b3
sha512=ec0ab77c2b1db2fd730581cefbb92f8391c3f8801cd02bb558609f46daff493e8c513e1d0978d1cdc613ce7ef1799e144d1f9740e0863169e45992df4c117ba4
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)"
>