Make sure that iteration_count=1000 is not used with algorithm=argon* (which is SLOW and takes around 10 minutes). (#546) (#547)

(cherry picked from commit 242c15bf4c)

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
patchback[bot]
2022-12-20 20:16:20 +01:00
committed by GitHub
parent 5761ca12b6
commit 6f8131a628

View File

@@ -6,6 +6,7 @@
keyfile: "{{ remote_tmp_dir }}/keyfile1"
keysize: 256
pbkdf:
algorithm: pbkdf2
iteration_count: 1000
become: yes
register: create_with_keysize
@@ -16,6 +17,7 @@
keyfile: "{{ remote_tmp_dir }}/keyfile1"
keysize: 256
pbkdf:
algorithm: pbkdf2
iteration_count: 1000
become: yes
register: create_idem_with_keysize
@@ -26,6 +28,7 @@
keyfile: "{{ remote_tmp_dir }}/keyfile1"
keysize: 512
pbkdf:
algorithm: pbkdf2
iteration_count: 1000
become: yes
register: create_idem_with_diff_keysize
@@ -36,6 +39,7 @@
keyfile: "{{ remote_tmp_dir }}/keyfile1"
passphrase: "{{ cryptfile_passphrase1 }}"
pbkdf:
algorithm: pbkdf2
iteration_count: 1000
ignore_errors: yes
become: yes