I would like to use full disk encryption in the future and wanted to test if my CPU has AES-NI support so I followed guide on nixcraft.
It turns out that I do have support, but the kernel modules are missing.
$ sort -u /proc/crypto | grep module module : arc4 module : ccm module : crc32c_intel module : crc32_pclmul module : crct10dif_pclmul module : kernel When I try to load the modules (sudo modprobe aesni_intel aes_x86_64) the command exits with 0, but the modules are not listed in the lsmod output.
I have never solved (or pretty much encountered) any problems with kernel modules before.