1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

[SG-1022] Update min password requirements to 12 char (#2677)

* fix: update to 10

* work: 12
This commit is contained in:
Brandon Maharaj 2023-02-16 13:15:45 -05:00 committed by GitHub
parent bcc2a2a1ce
commit bcaba6652b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -341,7 +341,7 @@ public static class ServiceCollectionExtensions
{
RequireDigit = false,
RequireLowercase = false,
RequiredLength = 10,
RequiredLength = 12,
RequireNonAlphanumeric = false,
RequireUppercase = false
};