ubuntu加密算法“AES256”的问题
我按照这个方法加密外置硬盘,但是aes算法别名有问题
sudo modprobe dm-crypt
sudo modprobe sha256
sudo modprobe aes
aes 命令后出现以下错误
modprobe: ERROR: could not insert 'padlock_aes': No such device
我尝试了链接中提到的解决方法,但我的 /etc/modprobe.d/ 目录中没有别名文件
user@user:/home/$ cd /etc/modprobe.d/
user@user:/etc/modprobe.d$ ls | grep aliases
user@user:/etc/modprobe.d$ [no output]
我不知道如何处理这个,但后来当我尝试加密驱动器时,它通过以下命令成功加密
sudo cryptsetup --verify-passphrase luksFormat /dev/sdb1 -c aes -s 256 -h sha256
我不知道它是如何找到 aes256 算法的,或者只是忽略了 aes256 或者做了一些神奇的事情。
所以我想回答以下问题
- crypt-setup 如何成功加密我的驱动器?
如何确认在 crypt-setup 执行的加密中也实现了 aes256?
为什么我没有
/etc/modprobe.d/alaises
文件?是因为新版本吗?因为该解决方案上次在 10.04 版上进行了测试。
提前一般警告:不要手动更改cryptsetup
带有-c
( --cipher
)、-s
( --key-size
) 和-h
( --hash
)等选项的参数。默认值通常足够合理,除非您知道自己在做什么,否则您实际上可能会选择更糟糕的参数。
这些默认值显示为cryptsetup --help
。作为参考,在带有 cryptsetup 1.7.2 的 Ubuntu 16.04 上,默认值为:
LUKS1: aes-xts-plain64, Key: 256 bits, LUKS header hashing: sha1, RNG: /dev/urandom
在带有 cryptsetup 1.7.2 的 Arch Linux 上,默认值是:
LUKS1: aes-xts-plain64, Key: 256 bits, LUKS header hashing: sha256, RNG: /dev/urandom
您链接的说明是为 2010 年发布的 Ubuntu 版本编写的。如今(甚至可能在那时)您不必手动加载内核模块来设置全盘加密。这些在cryptsetup
被调用时自动加载。
在 Linux 内核模块的上下文中,aes
名称是几个可能实现的模块名称和别名。aes
内核映像中内置了一个通用模块。然后还有替代的、更快的实现,这取决于某些硬件或 CPU 功能(如padlock-aes
和aesni-intel
)。
即使无法加载这些硬件加速模块,仍然可以回退到通用 AES 实现,这就是为什么cryptsetup
仍然可以使用它。
To confirm that AES256 encryption is indeed in use, you can use the cryptsetup luksDump /dev/sdb1
command which shows something like:
...
Cipher name: aes
Cipher mode: xts-plain64
Hash spec: sha256
Payload offset: 4096
MK bits: 256
Here you can see that the AES cipher was used using the SHA256 hash function for password derivation. The key size is 256 bits (so you are indeed using AES256).
For your last question (why you do not have an /etc/modprobe/aliases
file), this file does not exist in recent Ubuntu versions.
- ubuntu-服务器–在Ubuntu16.04中Apache2重启失败_Ubuntu
- ubuntu-网络–为什么新创建的使用pxe引导的vm没有列在maas中
- ubuntu-提取–如何解决simg2img错误“标题魔术师无效的稀疏文件格式”?
- ubuntu-使用DHCP时,如何在16.04GUI网络设置中为解析器指定其他搜索域?
- ubuntu-撤消不稳定内核的安装
- ubuntu-unity–从挂起状态唤醒后未在UI中显示字符:Ubuntu16.04
- ubuntu-16.04–帮我消除耳机插孔发出的红灯?
- ubuntu-双启动–Windows未显示在Grub菜单上,并且在未连接USB拇指驱动器的情况下无法加载
- ubuntu-16.04–最新的稳定内核是什么以及如何安装它?
- ubuntu-boot–以KaliLinux作为主操作系统的双启动Ubuntu16.04