Lowering argon parameters for faster password generation on mobile devices (smarphones)

master 0.1.0
Oleg Vasilev 2019-06-06 13:32:04 +03:00
parent 957d55778e
commit b42d23b132
3 changed files with 2 additions and 3 deletions

Binary file not shown.

View File

@ -22,7 +22,6 @@ func ExampleGeneratePassword(){
fmt.Println(*password)
// Output:
// `wPW`9'Ep$JH,@:7
// Esq8)G5q|NqXqt$T
}

View File

@ -16,7 +16,7 @@ const (
const (
argonMemory uint32 = 128 * 1024 // KiB
argonIters uint32 = 24
argonIters uint32 = 8
argonThreads uint8 = 3
)