检查是否已开启 Intel AES-NI
Silica(讨论 | 贡献)2019年1月21日 (一) 02:45的版本 (创建页面,内容为“Category:Linux 2019-01-21 10:41:38<br> == 前言 == 在没有 AES-NI 的移动设备上,chacha20-ietf-poly1305 的算法性能是 aes-128-gcm 的三倍…”)
2019-01-21 10:41:38
前言
在没有 AES-NI 的移动设备上,chacha20-ietf-poly1305 的算法性能是 aes-128-gcm 的三倍。相反,在计算机上,aes-128-gcm 比 chacha20-ietf-poly1305 更高。因此需要通过检测,决定最终要使用的加密算法,以达到最高性能。
步骤
lscpu grep -o aes /proc/cpuinfo
当你见到 aes 字样,则为开启。