]> Cypherpunks.ru repositories - balloon.git/commitdiff
Decrease default hardness parameters for most cases v1.1.0
authorSergey Matveev <stargrave@stargrave.org>
Sat, 5 Oct 2019 08:49:36 +0000 (11:49 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sun, 6 Oct 2019 09:58:52 +0000 (12:58 +0300)
cmd/balloon/main.go

index ba3be01338e123aa63c689a7d23985954f732ae0..9c541a42a232edcc64b764e4652b2f8b2ebbf6bf 100644 (file)
@@ -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() {