diff options
author | Péter Szilágyi <peterke@gmail.com> | 2019-08-22 17:27:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-22 17:27:54 +0800 |
commit | ac23073619252e05f2b2f801370ae7d6b1b38023 (patch) | |
tree | 87c6b0201fe2d73c2d6bff9673c4792993ed7245 | |
parent | 5b2c47a575cd0c37230cd9104db07f965816076c (diff) | |
parent | 8e391cec43efd5c43b13ce1aee5f388aee499611 (diff) | |
download | go-tangerine-ac23073619252e05f2b2f801370ae7d6b1b38023.tar go-tangerine-ac23073619252e05f2b2f801370ae7d6b1b38023.tar.gz go-tangerine-ac23073619252e05f2b2f801370ae7d6b1b38023.tar.bz2 go-tangerine-ac23073619252e05f2b2f801370ae7d6b1b38023.tar.lz go-tangerine-ac23073619252e05f2b2f801370ae7d6b1b38023.tar.xz go-tangerine-ac23073619252e05f2b2f801370ae7d6b1b38023.tar.zst go-tangerine-ac23073619252e05f2b2f801370ae7d6b1b38023.zip |
Merge pull request #19992 from karalabe/fix-blake2b-386-2
crypto/blake2b: fix 386, round 2
-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) } |