trezorLuks icon indicating copy to clipboard operation
trezorLuks copied to clipboard

A wrapper around "cryptsetup" to use a key from a Trezor device instead of a password

Results 4 trezorLuks issues
Sort by recently updated
recently updated
newest added

``` root@dell:~# `go env GOPATH`/bin/trezorLuks --trezor-key-name myKey luksFormat /dev/loop100 Sent the request to the Trezor device (please confirm the operation if required) panic: runtime error: invalid memory address or nil...

bug

``` var ( // Just some random values (from /dev/random) initialKeyValue = []byte{ 0xea, 0x30, 0xe0, 0xc7, 0x11, 0x4a, 0x64, 0x8b, 0x4a, 0xb3, 0x8f, 0xb9, 0xf1, 0x8a, 0x8d, 0xa1, 0x56,...

https://github.com/xaionaro-go/trezorLuks/blob/b933c862873c2ef43b2c6eb1b6f2bd3906c79c34/main.go#L18 vs https://github.com/xaionaro-go/trezorLuks/blob/6d30d3527b958280ed96151cb5ba32dd0afd94c1/main.go#L176 Can somebody explain can I leave the hardcoded values?

discuss