No description
Find a file
2019-10-25 16:30:25 +02:00
blake2.nim fix issues about type conversion (#1) 2019-10-25 16:30:25 +02:00
blake2.nimble init commit 2019-08-26 09:02:14 +02:00
blake2b-kat.txt init commit 2019-08-26 09:02:14 +02:00
LICENSE init commit 2019-08-26 09:02:14 +02:00
README.md init commit 2019-08-26 09:02:14 +02:00

Blake2 library. Two ways:

var b: Blake2b
blake2b_init(b, 4, "key", 3)
blake2b_update(b, "data", 4)
assert($blake2b_final(b) == getBlake2b("data", 4, "key"))