An extremly safe C# Net 9.0 Password Generator
- Generation of Safe Password
- Hashing of Passwords
- Utitlies for Classifying Passwords and detecting common used passwords
using BenScr.Security;Password pwd = new Password();
pwd.SetIncludeFlags(IncludeFlags.Digits | IncludeFlags.Uppercase);
pwd.SetLength(32);
string password = pwd.Next();
PasswordHasher hasher = new PasswordHasher();
string hash = hasher.ToHash(password);An example Project using this PasswordGenerator is PasswordGeneratorWPF