f1600x2_arm64.go raw

   1  //go:build arm64 && go1.16 && !purego
   2  // +build arm64,go1.16,!purego
   3  
   4  package keccakf1600
   5  
   6  import "github.com/cloudflare/circl/internal/sha3"
   7  
   8  func permuteSIMDx2(state []uint64, turbo bool) { f1600x2ARM(&state[0], &sha3.RC, turbo) }
   9  
  10  func permuteSIMDx4(state []uint64, turbo bool) { permuteScalarX4(state, turbo) }
  11  
  12  //go:noescape
  13  func f1600x2ARM(state *uint64, rc *[24]uint64, turbo bool)
  14