浏览代码

crypto/blake2b: fix 386, round 2

Péter Szilágyi 6 年之前
父节点
当前提交
8e391cec43
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      crypto/blake2b/blake2b_ref.go

+ 1 - 1
crypto/blake2b/blake2b_ref.go

@@ -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)
 }