- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for ARM64HasSHA3 (0.08 seconds)
-
lib/fips140/v1.26.0.zip
// On non-Apple ARM64, the SHA-3 instructions are apparently slower than the // pure Go implementation. Checking GOOS is a bit blunt, as it also excludes // Asahi Linux; we might consider checking the MIDR model in the future. var useSHA3 = cpu.ARM64HasSHA3 && runtime.GOOS == "darwin" func init() { impl.Register("sha3", "Armv8.2", &useSHA3) } //go:noescape func keccakF1600NEON(a *[200]byte) func keccakF1600(a *[200]byte) { if useSHA3 { keccakF1600NEON(a) } else { keccakF1600Generic(a) } } func (d...
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 08 17:58:32 GMT 2026 - 660.3K bytes - Click Count (0)