Skip to content

JoshuaBrest/blake3-swift

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)