We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aef7250 commit 7955403Copy full SHA for 7955403
internal/sha3/keccakf.go
@@ -2,13 +2,11 @@
2
// Use of this source code is governed by a BSD-style
3
// license that can be found in the LICENSE file.
4
5
-//go:build !amd64 || appengine || gccgo
6
-// +build !amd64 appengine gccgo
7
-
8
package sha3
9
10
// KeccakF1600 applies the Keccak permutation to a 1600b-wide
11
// state represented as a slice of 25 uint64s.
+// nolint:funlen
12
func KeccakF1600(a *[25]uint64) {
13
// Implementation translated from Keccak-inplace.c
14
// in the keccak reference code.
internal/sha3/keccakf_amd64.go
0 commit comments