diff options
author | Alex Auvolat <alex@adnab.me> | 2020-02-01 11:32:50 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-02-01 11:32:50 +0100 |
commit | c3bfcdf9a1c80b9ed27840f203cf3f14ef0bb113 (patch) | |
tree | e2b30b35becd10cf3738b51531e225634ec54254 /main.go | |
parent | 2f9ad411c7ed055646dc35c97ddae77c7bab2c16 (diff) | |
download | bottin-c3bfcdf9a1c80b9ed27840f203cf3f14ef0bb113.tar.gz bottin-c3bfcdf9a1c80b9ed27840f203cf3f14ef0bb113.zip |
Fix password comparison
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,6 +5,7 @@ package main // @FIXME: Add an initial prefix to the consul key value import ( + "crypto/rand" "crypto/tls" "encoding/base64" "encoding/json" @@ -12,7 +13,6 @@ import ( "fmt" "io/ioutil" "log" - "crypto/rand" "os" "os/signal" "syscall" |