You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
From 2e673178e0bf90fd9083d19061ad6f03ecd94c3d Mon Sep 17 00:00:00 2001
|
|
From: Frantisek Sumsal <frantisek@sumsal.cz>
|
|
Date: Thu, 7 Jul 2022 17:16:31 +0200
|
|
Subject: [PATCH] test: use PBKDF2 with capped iterations instead of Argon2
|
|
|
|
to reduce the amount of resources the test needs (similarly to TEST-24
|
|
where we do the same thing).
|
|
|
|
(cherry picked from commit 8fec14a7d397f52b93024bf3417de8f77b0d85e6)
|
|
|
|
Related: #2087652
|
|
---
|
|
test/units/testsuite-70.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/test/units/testsuite-70.sh b/test/units/testsuite-70.sh
|
|
index f395ef4e5e..09f78a0226 100755
|
|
--- a/test/units/testsuite-70.sh
|
|
+++ b/test/units/testsuite-70.sh
|
|
@@ -9,7 +9,7 @@ export SYSTEMD_LOG_LEVEL=debug
|
|
img="/var/tmp/test.img"
|
|
dd if=/dev/zero of=$img bs=1024k count=20 status=none
|
|
echo -n passphrase >/tmp/passphrase
|
|
-cryptsetup luksFormat -q --use-urandom $img /tmp/passphrase
|
|
+cryptsetup luksFormat -q --pbkdf pbkdf2 --pbkdf-force-iterations 1000 --use-urandom $img /tmp/passphrase
|
|
|
|
# Enroll unlock with default PCR policy
|
|
env PASSWORD=passphrase systemd-cryptenroll --tpm2-device=auto $img
|