Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 774 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 774 Bytes

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)