예제 #1
0
파일: aes.go 프로젝트: xyz12810/deblocus
// The following 3 methods
// provided by ASM in libcrypto-boringssl
// Only available on amd64
func HasAESHardware() int {
	return int(C.EVP_has_aes_hardware())
}
예제 #2
0
파일: aes.go 프로젝트: noscripter/deblocus
// The following 3 methods
// provided by ASM in libcrypto-boringssl
// Only available on amd64
func has_aes_hardware() int {
	return int(C.EVP_has_aes_hardware())
}