mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-19 03:10:48 +00:00
crypto/keccak: asm version of keccakF1600 on arm64
This commit is contained in:
parent
bba41f8072
commit
03fd9e070a
3 changed files with 5188 additions and 1 deletions
|
|
@ -2,7 +2,7 @@
|
|||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
//go:build !amd64 || purego || !gc
|
||||
//go:build (!amd64 && !arm64) || purego || !gc
|
||||
|
||||
package keccak
|
||||
|
||||
|
|
|
|||
10
crypto/keccak/keccakf_arm64.go
Normal file
10
crypto/keccak/keccakf_arm64.go
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
// 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
|
||||
|
||||
//go:noescape
|
||||
func keccakF1600(a *[25]uint64)
|
||||
5177
crypto/keccak/keccakf_arm64.s
Normal file
5177
crypto/keccak/keccakf_arm64.s
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue