1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-06 07:44:57 +03:00

Rename IsIntelAesNiSupported() to IsAesNiSupported()

This commit is contained in:
Davide Beatrici
2018-06-09 20:31:18 +02:00
parent 420e575ab1
commit 4029f3ae8d
8 changed files with 10 additions and 10 deletions

View File

@ -4253,8 +4253,8 @@ void AesDecrypt(void *dest, void *src, UINT size, AES_KEY_VALUE *k, void *ivec)
EVP_CIPHER_CTX_free(ctx);
}
// Determine whether the Intel AES-NI is supported
bool IsIntelAesNiSupported()
// Determine whether the AES-NI instruction set is supported by the CPU
bool IsAesNiSupported()
{
bool supported = false;