index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2022-05-18 13:57:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 13:57:44 +0200 |
commit | 089c46db4a3c89dd8ba670419369c405bec3a270 (patch) | |
tree | 418d7ca0607e76e05f79e628717d17d825f9abf5 /archinstall | |
parent | e154a6809d85b067f384390bc236a10c5e5445ac (diff) |
-rw-r--r-- | archinstall/lib/hsm/fido.py | 10 |
diff --git a/archinstall/lib/hsm/fido.py b/archinstall/lib/hsm/fido.py index 69f42890..8707ac52 100644 --- a/archinstall/lib/hsm/fido.py +++ b/archinstall/lib/hsm/fido.py @@ -1,7 +1,10 @@ import typing import pathlib +import getpass +import logging from ..general import SysCommand, SysCommandWorker, clear_vt100_escape_codes from ..disk.partition import Partition +from ..general import log def get_fido2_devices() -> typing.Dict[str, typing.Dict[str, str]]: """ @@ -41,7 +44,14 @@ def get_fido2_devices() -> typing.Dict[str, typing.Dict[str, str]]: def fido2_enroll(hsm_device_path :pathlib.Path, partition :Partition, password :str) -> bool: worker = SysCommandWorker(f"systemd-cryptenroll --fido2-device={hsm_device_path} {partition.real_device}", peak_output=True) pw_inputted = False + pin_inputted = False while worker.is_alive(): if pw_inputted is False and bytes(f"please enter current passphrase for disk {partition.real_device}", 'UTF-8') in worker._trace_log.lower(): worker.write(bytes(password, 'UTF-8')) pw_inputted = True + + elif pin_inputted is False and bytes(f"please enter security token pin", 'UTF-8') in worker._trace_log.lower(): + worker.write(bytes(getpass.getpass(" "), 'UTF-8')) + pin_inputted = True + + log(f"You might need to touch the FIDO2 device to unlock it if no prompt comes up after 3 seconds.", level=logging.INFO, fg="yellow")
\ No newline at end of file |