mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-08-02 15:00:13 +00:00
RTG-1339 Support post-quantum hybrid key exchange
Func spec: https://wiki.cfops.it/x/ZcBKHw
This commit is contained in:

committed by
Devin Carr

parent
3e0ff3a771
commit
11cbff4ff7
13
vendor/github.com/cloudflare/circl/simd/keccakf1600/f1600x2_arm64.go
generated
vendored
Normal file
13
vendor/github.com/cloudflare/circl/simd/keccakf1600/f1600x2_arm64.go
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
//go:build arm64 && go1.16
|
||||
// +build arm64,go1.16
|
||||
|
||||
package keccakf1600
|
||||
|
||||
import "github.com/cloudflare/circl/internal/sha3"
|
||||
|
||||
func permuteSIMDx2(state []uint64) { f1600x2ARM(&state[0], &sha3.RC) }
|
||||
|
||||
func permuteSIMDx4(state []uint64) { permuteScalarX4(state) }
|
||||
|
||||
//go:noescape
|
||||
func f1600x2ARM(state *uint64, rc *[24]uint64)
|
Reference in New Issue
Block a user