Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PasswordStrength.cs
2{
6 public enum PasswordStrength
7 {
11 Strong,
12
16 NotEnoughDigitsLettersSigns,
17
21 NotEnoughLettersOrSigns,
22
26 NotEnoughLettersOrDigits,
27
31 NotEnoughDigitsOrSigns,
32
40 TooShort,
41
45 TooManyIdenticalSymbols,
46
50 TooManySequencedSymbols,
51
55 ContainsPersonalNumber,
56
60 ContainsPhoneNumber,
61
65 ContainsEMail,
66
70 ContainsName,
71
75 ContainsAddress,
76 }
77}
PasswordStrength
Represents a result of validating password strength.