gocryptfs icon indicating copy to clipboard operation
gocryptfs copied to clipboard

RFE auto detect FIDO2 device

Open schaarsc opened this issue 1 year ago • 1 comments

during mount, before asking for a FIDO device (used during init) try to find a device. if there is only one device use this device if there are no devices or more than one, report the issue and ask for a device (same as now)

schaarsc avatar Dec 30 '22 21:12 schaarsc

Try to use bash for the first one

fido2-token -L | head -n 1 | cut -d':' -f 1

and for the last one in the list

fido2-token -L | tail -n 1 | cut -d':' -f 1

SamBayerZXZ avatar Jun 01 '23 09:06 SamBayerZXZ