diff options
author | Péter Szilágyi <peterke@gmail.com> | 2019-08-22 17:24:11 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2019-08-22 17:24:11 +0800 |
commit | 8e391cec43efd5c43b13ce1aee5f388aee499611 (patch) | |
tree | 87c6b0201fe2d73c2d6bff9673c4792993ed7245 /crypto | |
parent | 5b2c47a575cd0c37230cd9104db07f965816076c (diff) | |
download | go-tangerine-8e391cec43efd5c43b13ce1aee5f388aee499611.tar go-tangerine-8e391cec43efd5c43b13ce1aee5f388aee499611.tar.gz go-tangerine-8e391cec43efd5c43b13ce1aee5f388aee499611.tar.bz2 go-tangerine-8e391cec43efd5c43b13ce1aee5f388aee499611.tar.lz go-tangerine-8e391cec43efd5c43b13ce1aee5f388aee499611.tar.xz go-tangerine-8e391cec43efd5c43b13ce1aee5f388aee499611.tar.zst go-tangerine-8e391cec43efd5c43b13ce1aee5f388aee499611.zip |
crypto/blake2b: fix 386, round 2
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/blake2b/blake2b_ref.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/blake2b/blake2b_ref.go b/crypto/blake2b/blake2b_ref.go index 874c2d97a..9d0ade473 100644 --- a/crypto/blake2b/blake2b_ref.go +++ b/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) } |