From 6542cd28c0f00e04d8e47d7648fe1305aae0fc77 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sat, 5 Oct 2019 11:49:36 +0300 Subject: [PATCH] Decrease default hardness parameters for most cases --- cmd/balloon/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() { -- 2.44.0