mirror of
https://github.com/caddyserver/caddy.git
synced 2025-02-13 14:12:45 +08:00
9 lines
137 B
Go
9 lines
137 B
Go
// +build !amd64
|
|
|
|
package aesnicheck
|
|
|
|
// HasAESNI returns whether AES-NI is supported by the CPU.
|
|
func HasAESNI() bool {
|
|
return false
|
|
}
|