コード例 #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())
}