Skip to content

Ben-Scr/PasswordGenerator

Repository files navigation

Password Generator

An extremly safe C# Net 9.0 Password Generator

Usage

  • Generation of Safe Password
  • Hashing of Passwords
  • Utitlies for Classifying Passwords and detecting common used passwords

How to use

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);

Example Project

An example Project using this PasswordGenerator is PasswordGeneratorWPF

Support

Ko-fi Linktree

About

C# Password Generator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages