1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Arnaud Ysmal c67d4dbff1 Uncap error 2021-10-04 01:06:46 +02:00
Arnaud Ysmal 7b8fdd2913 Fix parameter description 2021-10-03 23:46:09 +02:00
1 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ func decryptAESCBC(p string, enc string) ([]byte, error) {
}
if !bytes.Equal(tmp[:8], []byte{0x53, 0x61, 0x6c, 0x74, 0x65, 0x64, 0x5f, 0x5f}) {
return []byte{}, errors.New("Magic not found")
return []byte{}, errors.New("magic not found")
}
key, iv := deriveKeyFromPassword(p, tmp[8:16])
@ -257,7 +257,7 @@ func main() {
flag.StringVar(&dbf, "d", "", "Database file")
flag.StringVar(&sentry, "e", "", "Select entry")
flag.BoolVar(&firefox, "f", false, "Get tokens from Firefox Authenticator Extension module")
flag.StringVar(&passwd, "p", "", "Database file")
flag.StringVar(&passwd, "p", "", "Database password")
flag.Parse()
if firefox || dbf != "" {