diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.go b/config/config.go index ac732af..f8e61e4 100644 --- a/config/config.go +++ b/config/config.go @@ -2,7 +2,7 @@ package config // How the public key is stored // 0: external file, 1: external storage device, 2: tpm2, 3: usb serial -var KeyStore = 0 +var KeyStore = 3 // Where the public key is stored, only applies for 0, 1 and 3 -var KeyLocation = "./publickey" +var KeyLocation = "/dev/ttyACM1" |