2022-10-26 09:02:14 +03:00
# SPDX-License-Identifier: MIT-0
2021-10-01 13:44:33 +03:00
2019-11-04 21:36:47 +03:00
# Destroy any old key on the Yubikey (careful!)
ykman piv reset
2020-12-07 19:18:52 +03:00
# Generate a new private/public key pair on the device, store the public key in
# 'pubkey.pem'.
2019-11-04 21:36:47 +03:00
ykman piv generate-key -a RSA2048 9d pubkey.pem
2019-12-17 20:39:12 +03:00
# Create a self-signed certificate from this public key, and store it on the
2020-12-07 19:18:52 +03:00
# device. The "subject" should be an arbitrary user-chosen string to identify
# the token with.
2019-11-04 21:36:47 +03:00
ykman piv generate-certificate --subject "Knobelei" 9d pubkey.pem
2020-12-07 19:18:52 +03:00
# We don't need the public key anymore, let's remove it. Since it is not
# security sensitive we just do a regular "rm" here.
2019-11-04 21:36:47 +03:00
rm pubkey.pem
2020-12-07 19:18:52 +03:00
# Enroll the freshly initialized security token in the LUKS2 volume. Replace
# /dev/sdXn by the partition to use (e.g. /dev/sda1).
sudo systemd-cryptenroll --pkcs11-token-uri= auto /dev/sdXn
# Test: Let's run systemd-cryptsetup to test if this all worked.
2023-09-22 19:47:05 +03:00
sudo systemd-cryptsetup attach mytest /dev/sdXn - pkcs11-uri= auto
2019-11-04 21:36:47 +03:00
2020-12-07 19:18:52 +03:00
# If that worked, let's now add the same line persistently to /etc/crypttab,
2023-09-22 19:27:10 +03:00
# for the future. We don't want to use the (unstable) /dev/sdX name, so let's
# figure out a stable link:
udevadm info -q -r symlink /dev/sdXn
2023-09-22 00:52:04 +03:00
2023-09-22 19:27:10 +03:00
# Now add the line using the by-uuid symlink to /etc/crypttab:
sudo bash -c 'echo "mytest /dev/disk/by-uuid/... - pkcs11-uri=auto" >>/etc/crypttab'
# Depending on your distribution and encryption setup, you may need to manually
# regenerate your initramfs to be able to use a Yubikey / PKCS#11 token to
# unlock the partition during early boot.
# More information at https://unix.stackexchange.com/a/705809.
2023-09-22 00:52:04 +03:00
# On Fedora based systems:
sudo dracut --force
# On Debian based systems:
sudo update-initramfs -u