diff --git a/src/Cedar/Server.c b/src/Cedar/Server.c index d4c2674f..5ec4ecba 100644 --- a/src/Cedar/Server.c +++ b/src/Cedar/Server.c @@ -1770,8 +1770,8 @@ void GetServerCapsMain(SERVER *s, CAPSLIST *t) // UDP acceleration feature AddCapsBool(t, "b_support_udp_acceleration", true); - // Intel AES Acceleration function - AddCapsBool(t, "b_support_intel_aes", IsIntelAesNiSupported()); + // AES acceleration function + AddCapsBool(t, "b_support_aes_ni", IsAesNiSupported()); #ifdef OS_WIN32 // SeLow driver diff --git a/src/Mayaqua/Encrypt.c b/src/Mayaqua/Encrypt.c index b8cf1974..567cd047 100644 --- a/src/Mayaqua/Encrypt.c +++ b/src/Mayaqua/Encrypt.c @@ -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; diff --git a/src/Mayaqua/Encrypt.h b/src/Mayaqua/Encrypt.h index 10e0dd7b..d13a3126 100644 --- a/src/Mayaqua/Encrypt.h +++ b/src/Mayaqua/Encrypt.h @@ -522,7 +522,7 @@ void AesFreeKey(AES_KEY_VALUE *k); void AesEncrypt(void *dest, void *src, UINT size, AES_KEY_VALUE *k, void *ivec); void AesDecrypt(void *dest, void *src, UINT size, AES_KEY_VALUE *k, void *ivec); -bool IsIntelAesNiSupported(); +bool IsAesNiSupported(); void OpenSSL_InitLock(); void OpenSSL_FreeLock(); diff --git a/src/bin/hamcore/strtable_cn.stb b/src/bin/hamcore/strtable_cn.stb index d415f134..f223717d 100644 --- a/src/bin/hamcore/strtable_cn.stb +++ b/src/bin/hamcore/strtable_cn.stb @@ -665,7 +665,7 @@ CT_b_support_special_listener 支持 VPN over ICMP 和 VPN over DNS CT_b_support_redirect_url_acl 支持访问列表 HTTP URL 改道 CT_b_is_in_vm 虚拟机上运行 CT_b_support_azure 支持 VPN Azure -CT_b_support_intel_aes 支持 Intel CPU AES 加密加速功能 (AES-NI) +CT_b_support_aes_ni 支持 CPU AES 加密加速功能 (AES-NI) CT_b_using_selow_driver 支持 SoftEther Lightweight Kernel-mode Ethernet Driver CT_b_support_vgs 支持 VPN Gate 服务的服务器功能 CT_b_support_vgs_in_client VPN Gate 服务的服务器功能 (VPN 客户端集成) diff --git a/src/bin/hamcore/strtable_en.stb b/src/bin/hamcore/strtable_en.stb index 1e64549f..4c6693a8 100644 --- a/src/bin/hamcore/strtable_en.stb +++ b/src/bin/hamcore/strtable_en.stb @@ -659,7 +659,7 @@ CT_b_support_special_listener VPN over ICMP and VPN over DNS is Supported CT_b_support_redirect_url_acl HTTP URL Redirection in Access List is Supported CT_b_is_in_vm Running on VM (Virtual Machine) CT_b_support_azure VPN Azure is Supported -CT_b_support_intel_aes Intel CPU AES Acceleration (AES-NI) is Active +CT_b_support_aes_ni CPU AES Acceleration (AES-NI) is Active CT_b_using_selow_driver SoftEther Lightweight Kernel-mode Ethernet Driver is Active CT_b_support_vgs VPN Gate Service Server Functions are Supported CT_b_support_vgs_in_client VPN Gate Service Server Functions (VPN Client integrated) diff --git a/src/bin/hamcore/strtable_ja.stb b/src/bin/hamcore/strtable_ja.stb index 20265106..14ae7109 100644 --- a/src/bin/hamcore/strtable_ja.stb +++ b/src/bin/hamcore/strtable_ja.stb @@ -661,7 +661,7 @@ CT_b_support_special_listener VPN over ICMP および VPN over DNS 接続の受 CT_b_support_redirect_url_acl アクセスリストで HTTP の URL リダイレクト機能をサポート CT_b_is_in_vm VM (仮想マシン) 内で動作中 CT_b_support_azure VPN Azure 機能が利用可能 -CT_b_support_intel_aes Intel CPU AES Acceleration (AES-NI) が動作中 +CT_b_support_aes_ni CPU AES Acceleration (AES-NI) が動作中 CT_b_using_selow_driver SoftEther 軽量カーネルモード Ethernet ドライバを使用中 CT_b_support_vgs VPN Gate サービス サーバー機能が利用可能 CT_b_support_vgs_in_client VPN Gate サービス サーバー機能 (VPN Client 統合) diff --git a/src/bin/hamcore/strtable_ko.stb b/src/bin/hamcore/strtable_ko.stb index 40125158..63574e36 100644 --- a/src/bin/hamcore/strtable_ko.stb +++ b/src/bin/hamcore/strtable_ko.stb @@ -662,7 +662,7 @@ CT_b_support_special_listener VPN over ICMP 및 VPN over DNS 연결 접수 CT_b_support_redirect_url_acl 액세스 목록에서 HTTP의 URL 리디렉션 기능을 지원 CT_b_is_in_vm VM(가상 머신)에서 실행중인 CT_b_support_azure VPN Azure 기능을 사용할 수 -CT_b_support_intel_aes Intel CPU AES Acceleration (AES-NI)가 동작 중 +CT_b_support_aes_ni CPU AES Acceleration (AES-NI)가 동작 중 CT_b_using_selow_driver SoftEther 경량 커널 모드 Ethernet 드라이버를 사용 중 CT_b_support_vgs VPN Gate 서비스 서버 기능을 사용할 수 CT_b_support_vgs_in_client VPN Gate 서비스 서버 기능 (VPN Client 통합) diff --git a/src/bin/hamcore/strtable_tw.stb b/src/bin/hamcore/strtable_tw.stb index 6bbd8760..4ca3eec3 100644 --- a/src/bin/hamcore/strtable_tw.stb +++ b/src/bin/hamcore/strtable_tw.stb @@ -667,7 +667,7 @@ CT_b_support_special_listener 支持 VPN over ICMP 和 VPN over DNS CT_b_support_redirect_url_acl 支持訪問列表 HTTP URL 改道 CT_b_is_in_vm 虛擬機器上運行 CT_b_support_azure 支持 VPN Azure -CT_b_support_intel_aes 支援 Intel CPU AES 加密加速功能 (AES-NI) +CT_b_support_aes_ni 支援 CPU AES 加密加速功能 (AES-NI) CT_b_using_selow_driver 支持 SoftEther Lightweight Kernel-mode Ethernet Driver CT_b_support_vgs 支援 VPN Gate 服務的伺服器功能 CT_b_support_vgs_in_client VPN Gate 服務的伺服器功能 (VPN 用戶端集成)