File: f1600x2_arm64.go

package info (click to toggle)
golang-github-cloudflare-circl 1.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,352 kB
  • sloc: asm: 20,491; ansic: 1,292; makefile: 68
file content (13 lines) | stat: -rw-r--r-- 370 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
//go:build arm64 && go1.16
// +build arm64,go1.16

package keccakf1600

import "github.com/cloudflare/circl/internal/sha3"

func permuteSIMDx2(state []uint64, turbo bool) { f1600x2ARM(&state[0], &sha3.RC, turbo) }

func permuteSIMDx4(state []uint64, turbo bool) { permuteScalarX4(state, turbo) }

//go:noescape
func f1600x2ARM(state *uint64, rc *[24]uint64, turbo bool)