From d04a4e51519536dd971be2c9b1bbd6a7081127e4 Mon Sep 17 00:00:00 2001 From: Bandie Date: Sun, 26 Jul 2020 21:02:16 +0200 Subject: [PATCH] gcry_sha512 in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1095a1b..36fdfc8 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Before you can use the signing and verification feature you need to generate a k - Export your public key through running `gpg --export -o ~/pubkey`. - `mount /boot` (assuming your /boot partition is in your /etc/fstab) - (Re)install GRUB2. The following command will install root's public key into the core and instruct to load the modules `gcry_sha256`, `gcry_sha512` `gcry_dsa` and `gcry_rsa` at start so that GRUB2 will be able to do verifications. GRUB2 will take the right crypto for you then, depending on your system's configuration. - - `grub-install /dev/sda -k /root/pubkey --modules="gcry_sha256 gcry_dsa gcry_rsa"` + - `grub-install /dev/sda -k /root/pubkey --modules="gcry_sha256 gcry_sha512 gcry_dsa gcry_rsa"` - Enable GRUB2's check\_signatures feature: - Insert the following content at the end of the file of */etc/grub.d/00_header* ```