We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bba41f8 commit 03fd9e0Copy full SHA for 03fd9e0
crypto/keccak/keccakf.go
@@ -2,7 +2,7 @@
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 || purego || !gc
+//go:build (!amd64 && !arm64) || purego || !gc
6
7
package keccak
8
crypto/keccak/keccakf_arm64.go
@@ -0,0 +1,10 @@
1
+// Copyright 2026 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+//go:build gc && !purego && arm64
+package keccak
9
+//go:noescape
10
+func keccakF1600(a *[25]uint64)
0 commit comments