1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05: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

View File

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