We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cc6b20 commit c486017Copy full SHA for c486017
1 file changed
archinstall/lib/luks.py
@@ -7,6 +7,7 @@
7
from types import TracebackType
8
9
from archinstall.lib.disk.utils import get_lsblk_info, umount
10
+from archinstall.lib.models.device_model import DEFAULT_ITER_TIME
11
12
from .exceptions import DiskError, SysCallError
13
from .general import SysCommand, SysCommandWorker, generate_password, run
@@ -76,7 +77,7 @@ def encrypt(
76
77
self,
78
key_size: int = 512,
79
hash_type: str = 'sha512',
- iter_time: int = 10000,
80
+ iter_time: int = DEFAULT_ITER_TIME,
81
key_file: Path | None = None,
82
) -> Path | None:
83
debug(f'Luks2 encrypting: {self.luks_dev_path}')
0 commit comments