francsw

Results 6 comments of francsw

I noticed that some applications, in my case Passwordsafe, resets the Yubikey constantly in the lockscreen. You can monitor it with `udevadm monitor --udev` That might be what's draining you...

The yubikey-keyscript file is setup in the `/etc/crypttab`. e.g. ``` sda6_crypt UUID=97ba8852-5d14-4ee8-ba9e-20b2cd6bb550 none luks,keyscript=/usr/share/yubikey-luks/ykluks-keyscript ``` You should see the following text prompt at boot "Please insert yubikey and press enter...

A workaround for this problem is to add --insecure to the curl command here https://github.com/latchset/clevis/blob/master/src/pins/tang/clevis-decrypt-tang#L78 `if ! rep="$(curl --insecure -sfg -X POST -H "$ct" --data-binary @- "$url"

If someone ends up here trying to get Clevis to use HTTPS, here are some steps and scripts to help you along. https://github.com/francsw/clevis-HTTPS

I have firmware version 4.01.51Y4.0.02W1.0.57(2017-07-261-D) So far I managed to figure out the following: Char 1-64 stays constant 31-60 is the Inverter serial no. 305-378 is the firmware version. The...

I managed to get most of it. So for firmware version: H4.01.51Y4.0.02W1.0.57(2017-07-261-D) These are my values: vpv1 = float(int(hexdata[66:70],16))/10 vpv2 = float(int(hexdata[70:74],16))/10 ipv1 = float(int(hexdata[78:82],16))/10 ipv2 = float(int(hexdata[82:86],16))/10 vac1 =...