We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Blake3
BLAKE3
1 parent 6e33ca7 commit fe79149Copy full SHA for fe79149
Sources/BLAKE3/BLAKE3.swift
@@ -66,8 +66,8 @@ public final class BLAKE3 {
66
/// print(hash)
67
/// ```
68
public func finalizeBytes() -> [UInt8] {
69
- var out = [UInt8](repeating: 0, count: Blake3.BLAKE3_OUT_LENGTH)
70
- 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)
71
return out
72
}
73
0 commit comments