Check the Strength of a Password Using C#
Max O'Didily
Check the Strength of a Password Using C#
Greetings, in this tutorial we shall be looking at how to check the strength of a password using C#. This is similar to validating a password, but we are focusing on evaluating how strong a password is instead of checking if it is valid or not.
We will be checking the length, if it has a lower case letter, if it has an upper case letter, if it has a digit and if it has a special character. All of these factors will determine how strong the password is.
Thanks for watching this tutorial on how to check the strength/complexity of a password in C#.
C# Password Regexes:
@"[a-z]" @"[A-Z]" @"\d" @"[^\w]"
C# tutorials that you may like:
How to validate a password in C#: https://www.youtube.com/watch?v=n7q0RLQHR8E
Get user input in C#: https://www.youtube.com/watch?v=rbdDddbFwds
Range Check C#: https://www.youtube.com/watch?v=GniGWGCFqYw
Subscribe to keep notified when I upload: https://tinyurl.com/SubMaxODidily
Check the Strength of a Password Using C# ... https://www.youtube.com/watch?v=hg3YDsbqBqQ
16372270 Bytes