From: Sergey Matveev Date: Sat, 5 Oct 2019 08:49:36 +0000 (+0300) Subject: Decrease default hardness parameters for most cases X-Git-Tag: v1.1.0^0 X-Git-Url: http://www.git.cypherpunks.ru/?p=balloon.git;a=commitdiff_plain;h=6542cd28c0f00e04d8e47d7648fe1305aae0fc77 Decrease default hardness parameters for most cases --- diff --git a/cmd/balloon/main.go b/cmd/balloon/main.go index ba3be01..9c541a4 100644 --- a/cmd/balloon/main.go +++ b/cmd/balloon/main.go @@ -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() {