Contents

joshbashed/blake3-swift

A Swift wrapper for the official C/Rust implementation of BLAKE3.

License

This project is licensed under the ISC license. See the LICENSE file for details.

Usage

import BLAKE3

let hasher = BLAKE3()
hasher.update(data: "Hello, world!".data(using: .utf8)!)
let hash = hasher.finalizeData()
print(hash)

Package Metadata

Repository: joshbashed/blake3-swift

Default branch: main

README: README.md