Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
/ passgen Public archive

A fully configurable .NET password generator and strength tester library. Supporting alphanumeric and special character options and more.

Notifications You must be signed in to change notification settings

collindutrow/passgen

Repository files navigation

passgen

A fully configurable .NET password generator and strength tester library. Supporting alphanumeric/special characters other options.

Sample usage

PasswordGenerator p = new PasswordGenerator();

p.length = 8;
p.azUpper = true;
p.azLower = false;
p.numbers = true;
p.special = false;
p.minAmmountOfNumbers = 1;
p.requireEveryCharType = true;
p.avoidAmbiguousChars = true;

string password = p.Password;

int i = PasswordStrengthTester.Test(password);
int passwordStrength = i > 100 ? 100 : i;

About

A fully configurable .NET password generator and strength tester library. Supporting alphanumeric and special character options and more.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages