aboutsummaryrefslogtreecommitdiff
path: root/internal/readpassword
diff options
context:
space:
mode:
authorJakob Unterwurzacher2018-07-01 22:00:06 +0200
committerJakob Unterwurzacher2018-07-01 22:00:06 +0200
commit01a078e7c0d75b0564282fc7613944be858a522f (patch)
treec6637e9ad666c3dd9fa4d1b931d4bb74c2b2c0f1 /internal/readpassword
parent5243cd0e0d90c8a8aca735e06302d5a9d891a8a6 (diff)
Fix golint warnings
Diffstat (limited to 'internal/readpassword')
-rw-r--r--internal/readpassword/trezor_disabled.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/readpassword/trezor_disabled.go b/internal/readpassword/trezor_disabled.go
index 3ba969c..c512f1b 100644
--- a/internal/readpassword/trezor_disabled.go
+++ b/internal/readpassword/trezor_disabled.go
@@ -9,9 +9,13 @@ import (
)
const (
+ // TrezorPayloadLen is the length of the payload data passed to Trezor's
+ // CipherKeyValue function.
TrezorPayloadLen = 32
)
+// Trezor determinitically derives 32 bytes from the payload and the connected
+// USB security module.
func Trezor(payload []byte) []byte {
tlog.Fatal.Printf("\"-trezor\" is not implemented yet.")
os.Exit(1)