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/)
- Host: GitHub
- URL: https://github.com/narimiran/blake2
- Owner: narimiran
- License: cc0-1.0
- Created: 2019-08-26T06:59:55.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-25T14:30:26.000Z (almost 6 years ago)
- Last Synced: 2025-03-15T04:46:08.586Z (7 months ago)
- Language: Nim
- Homepage:
- Size: 27.3 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"))
```