Password

如何仔細檢查 LUKS 密碼

  • May 7, 2018

這是我為加密卷輸入新密碼的一種方式:

sudo cryptsetup luksAddKey --key-slot 4  /dev/sda5

不幸的是,cryptsetup不要求確認新密碼。如何確保我輸入的密碼是我真正想要的?

我看到了兩種解決方法。

  1. 重新啟動並嘗試新的密碼。
  2. 在新密碼的幫助下,將臨時密碼添加到另一個插槽。殺死臨時密碼。

有沒有更優雅的方式?

只需執行cryptsetup參數即可-y

從手冊頁cryptsetup

--verify-passphrase, -y
   query for passwords twice. Useful when creating a (regular) mapping for the first time, 
   or when running luksFormat. 

系統會兩次詢問現有密碼和新密碼:

$ sudo cryptsetup luksAddKey -y --key-slot 4  /dev/sda5
Enter any existing passphrase: 
Verify passphrase: 
Enter new passphrase for key slot: 
Verify passphrase: 
Passphrases do not match.

引用自:https://unix.stackexchange.com/questions/442251