3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-25 13:29:27 +01:00

raise passphrase length limit to 300 bytes

For irctest compatibility.

Fixes #775
This commit is contained in:
Shivaram Lingamneni 2020-02-23 00:11:57 -05:00
parent fb8b73e29a
commit 44b79a052c

View File

@ -441,7 +441,7 @@ func (am *AccountManager) Register(client *Client, account string, callbackNames
// validatePassphrase checks whether a passphrase is allowed by our rules
func validatePassphrase(passphrase string) error {
// sanity check the length
if len(passphrase) == 0 || len(passphrase) > 256 {
if len(passphrase) == 0 || len(passphrase) > 300 {
return errAccountBadPassphrase
}
// we use * as a placeholder in some places, if it's gotten this far then fail