replace LICENSE with intended CC0 1.0
add akku
s/ruse/arew/g, and remove generated files.
(arew blake3)
Chez Scheme bindings for blake3 hashing library.
(make-blake3)
(blake3-update! hasher bytevector)
(blake3-finalize! hasher)
(blake3 bytevector)
Sugar for the above procedures. The definition of blake3
is the
following:
(define (blake3 bytevector)
(define hasher (make-blake3))
(blake3-update! hasher bytevector)
(blake3-finalize! hasher))