Skip to content

Commit

Permalink
fix: update references from Blake3 to BLAKE3.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaBrest committed Nov 20, 2024
1 parent 6e33ca7 commit fe79149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/BLAKE3/BLAKE3.swift
Original file line number Diff line number Diff line change
@@ -66,8 +66,8 @@ public final class BLAKE3 {
/// print(hash)
/// ```
public func finalizeBytes() -> [UInt8] {
var out = [UInt8](repeating: 0, count: Blake3.BLAKE3_OUT_LENGTH)
blake3_hasher_finalize(&hasher, &out, Blake3.BLAKE3_OUT_LENGTH)
var out = [UInt8](repeating: 0, count: BLAKE3.BLAKE3_OUT_LENGTH)
blake3_hasher_finalize(&hasher, &out, BLAKE3.BLAKE3_OUT_LENGTH)
return out
}

0 comments on commit fe79149

Please sign in to comment.