Skip to content

Commit

Permalink
crypto/blake2b: fix 386, round 2
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Aug 22, 2019
1 parent 5b2c47a commit 8e391ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/blake2b/blake2b_ref.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

package blake2b

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

0 comments on commit 8e391ce

Please sign in to comment.