Skip to content

Commit ac23073

Browse files
authored
Merge pull request #19992 from karalabe/fix-blake2b-386-2
crypto/blake2b: fix 386, round 2
2 parents 5b2c47a + 8e391ce commit ac23073

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto/blake2b/blake2b_ref.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77
package blake2b
88

9-
func f(h *[8]uint64, m [16]uint64, c0, c1 uint64, flag uint64, rounds int) {
9+
func f(h *[8]uint64, m *[16]uint64, c0, c1 uint64, flag uint64, rounds uint64) {
1010
fGeneric(h, m, c0, c1, flag, rounds)
1111
}

0 commit comments

Comments
 (0)