1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

Enforce master password policy (#79)

* Enforce master password policy

* Updated based on requested changes/discussions
This commit is contained in:
Vincent Salucci
2020-03-02 11:05:05 -06:00
committed by GitHub
parent 0f699515a4
commit 6210396aa9
3 changed files with 101 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import Domain from './domainBase';
export class MasterPasswordPolicyOptions extends Domain {
minComplexity: number = 0;
minLength: number = 0;
requireUpper: boolean = false;
requireLower: boolean = false;
requireNumbers: boolean = false;
requireSpecial: boolean = false;
}