diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-04 15:14:49 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-04 15:14:49 +0100 |
commit | 5b3826f5de82eb3dcb43bcb85261cd56e298668a (patch) | |
tree | b5a10c89fbc2b3a1123aa19b770305e5e3de8854 /config | |
parent | 71cc54810fdb51e428b83a37ff89d54a6cc3d8c8 (diff) | |
download | fsverify-5b3826f5de82eb3dcb43bcb85261cd56e298668a.tar.gz fsverify-5b3826f5de82eb3dcb43bcb85261cd56e298668a.tar.bz2 |
Repeated block verification
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" |