[chore] extending maximumPasswordLength to 256 (#1372)

* [chore] extending maximumPasswordLength to 256

Resolves: #1365

* Make long test longer
This commit is contained in:
즈눅 2023-01-23 07:25:11 +09:00 committed by GitHub
commit 13ec15d2bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@ import (
)
const (
maximumPasswordLength = 64
maximumPasswordLength = 256
minimumPasswordEntropy = 60 // dictates password strength. See https://github.com/wagslane/go-password-validator
minimumReasonLength = 40
maximumReasonLength = 500