package cryptokit
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
A library of cryptographic primitives
Install
dune-project
Dependency
Authors
Maintainers
Sources
release1201.tar.gz
sha256=b933c32b4e03e7236add969c2f583df241aeff8eabd2cabb1f345a78250fcea6
sha512=7b1e2ba8b99b11a04522ffe4b6b92278bc772d9888967757ab013151211fc85d29847af566677f2b9c3200e45b857600a70356ca6ed80ca299508808057358b1
doc/cryptokit/Cryptokit/class-type-hash/index.html
Class type Cryptokit.hashSource
A hash is a function that maps arbitrarily-long character sequences to small, fixed-size strings.
add_substring b pos len adds len characters from byte array b, starting at character number pos, to the running hash computation.
add_string str adds all characters of string str to the running hash computation.
add_byte b adds the character having code b to the running hash computation. b must be between 0 and 255 inclusive.
Terminate the hash computation and return the hash value for the input data provided via the add_* methods. The hash value is a string of length hash_size characters. After calling result, the hash can no longer accept additional data. Hence, do not call any of the add_* methods after result.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>