Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uasi/inko-blake3
A BLAKE3 hasher for Inko.
https://github.com/uasi/inko-blake3
Last synced: about 7 hours ago
JSON representation
A BLAKE3 hasher for Inko.
- Host: GitHub
- URL: https://github.com/uasi/inko-blake3
- Owner: uasi
- License: mpl-2.0
- Created: 2023-10-29T13:04:35.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-30T17:31:53.000Z (about 1 year ago)
- Last Synced: 2023-10-31T17:33:27.672Z (about 1 year ago)
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# inko-blake3
A [BLAKE3](https://github.com/BLAKE3-team/BLAKE3) hasher for the Inko programming language.
## Examples
import blake3.Blake3
let hasher = Blake3.new
hasher.write('hello'.to_byte_array)
hasher.finish.to_string # => 'ea8f163db38682925e4491c5e58d4bb3506ef8c14eb78a86e908c5624a67200f'