mirror of
https://github.com/caddyserver/caddy.git
synced 2025-02-10 23:40:06 -05:00
The vendor/ folder was created with the help of @FiloSottile's gvt and vendorcheck. Any dependencies of Caddy plugins outside this repo are not vendored. We do not remove any unused, vendored packages because vendorcheck -u only checks using the current build configuration; i.e. packages that may be imported by files toggled by build tags of other systems. CI tests have been updated to ignore the vendor/ folder. When Go 1.9 is released, a few of the go commands should be revised to again use ./... as it will ignore the vendor folder by default.
22 lines
462 B
Go
22 lines
462 B
Go
// Command aesnicheck queries the CPU for AES-NI support. If AES-NI is supported,
|
|
// aesnicheck will print "supported" and exit with a status of 0. If AES-NI is
|
|
// not supported, aesnicheck will print "unsupported" and exit with a status of
|
|
// -1.
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/codahale/aesnicheck"
|
|
)
|
|
|
|
func main() {
|
|
if aesnicheck.HasAESNI() {
|
|
fmt.Println("supported")
|
|
os.Exit(0)
|
|
} else {
|
|
fmt.Println("unsupported")
|
|
os.Exit(-1)
|
|
}
|
|
}
|