An open API service indexing awesome lists of open source software.

https://github.com/narimiran/blake2

Taken over from @tankfeeder (https://bitbucket.org/mihailp/)
https://github.com/narimiran/blake2

Last synced: 7 months ago
JSON representation

Taken over from @tankfeeder (https://bitbucket.org/mihailp/)

Awesome Lists containing this project

README

          

Blake2 library. Two ways:
```nim
var b: Blake2b
blake2b_init(b, 4, "key", 3)
blake2b_update(b, "data", 4)
assert($blake2b_final(b) == getBlake2b("data", 4, "key"))
```