X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=cmd%2Fballoon%2Fmain.go;h=bb386f2b96ab8795a62a0b2ad311d62ce497370b;hb=66ce03f48e7efdc66a3f2b82d4486bbcc5bbab0f;hp=ba3be01338e123aa63c689a7d23985954f732ae0;hpb=cb214daf358024d6ceaaa314cfddf0e59003e79b;p=balloon.git diff --git a/cmd/balloon/main.go b/cmd/balloon/main.go index ba3be01..bb386f2 100644 --- a/cmd/balloon/main.go +++ b/cmd/balloon/main.go @@ -1,6 +1,6 @@ /* balloon -- Balloon password hashing function -Copyright (C) 2016-2019 Sergey Matveev +Copyright (C) 2016-2022 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -32,9 +32,9 @@ import ( ) func main() { - s := flag.Int("s", 1<<18, "Space cost, number of hash-sized blocks") - t := flag.Int("t", 2, "Time cost, rounds") - p := flag.Int("p", 4, "Number of threads") + s := flag.Int("s", 1<<16, "Space cost, number of hash-sized blocks") + t := flag.Int("t", 3, "Time cost, rounds") + p := flag.Int("p", 1, "Number of threads") saltHex := flag.String("salt", "", "Salt, hexadecimal, optional") passwd := flag.String("passwd", "", "Password") flag.Usage = func() {