MkfsSion

Results 12 comments of MkfsSion

Currently, when `--pin-prefiexed` flag specified, password must be formated as _pin_:_password(plain)_, but with `--salt` option, password can be a `string:` prefixed plain password, `file:` prefixed filename where password located or...

I agree with the second or third idea, since it's more powerful and I can get rid of ugly tty hack in initcpio script (rpassword library has been hardcoded to...

Unfortunately, this does't work too. My initcpio script: ``` #!/usr/bin/ash run_hook() { modprobe -a -q dm-crypt >/dev/null 2>&1 . /etc/fido2luks.conf if [ -z "$cryptdevice" ]; then device="$FIDO2LUKS_DEVICE" dmname="$FIDO2LUKS_MAPPER_NAME" else IFS=:...

Yes, I am sure. The following are all variables upon the execution of the hook. ``` CLEANUPHOOKS='udev' EARLYHOOKS='udev' FIDO2LUKS_ASK_PIN='1' FIDO2LUKS_MAX_RETRIES='3' FIDO2LUKS_SALT='string:secret' FUNCNAME='' HOME='/' HOOKS='udev fido2luks' HOSTNAME='archlinux' IFS=' ' LATEHOOKS='' LINENO=''...

Sorry for the late reply. I get another question to ask, can I use `--pin-helper` without specifying `--password-helper` option but with `--salt` option?

> * You're talking about the PGP application of the Yubikey, right? Yes > * Could you post an example for using `DO C4`? Here is scdaemon log ``` 2022-06-11...

> Before making the assumption that all Yubikey 5.4.3 cards have this error, there are other possible sources for this error. > > Some other application may have selected one...

> Have you contacted Yubico about this bug? > Yes, they said they sent a ticket to firmware team and no response since then. I did some experiments with opensc-explorer...

Thanks for the review. I am confused that what the return value of pgp_get_card_features actually means. ``` /* get card_features from ATR & DOs */ if (pgp_get_card_features(card)) { LOG_FUNC_RETURN(card->ctx, SC_SUCCESS);...