Skip to content

Ben-Scr/PasswordGenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Password Generator

A C# .Net 9.0 Password Generator

Usage

  • Generation of Safe Passwords
  • 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);

External Libraries

Example Project

An example Project using this PasswordGenerator is PasswordGeneratorWPF

About

C# Password Generation Library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages