Skip to content

lappyqt/Passwd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Passwd

Simple password generator for .NET

Basic example

var options = new PasswordOptions
{  
    Length = 24,
    Exclude = "@()"
};

var passwordGenerator = new PasswordGenerator();
var password = passwordGenerator.GeneratePassword(options);

Password generation options

Option Type Default value
Length Int 16
Lowercase Bool true
Uppercase Bool true
Numbers Bool true
SpecialSymbols Bool true
Exclude String Empty

About

Simple password generator for .NET

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages