Go to file
manuelkamp 2fbeecc42a
Update README.md
2019-04-14 21:24:39 +02:00
Mk0.Tools.Password added passwordgenerator 2019-04-14 21:22:05 +02:00
.gitattributes initial 2019-04-14 09:35:13 +02:00
.gitignore nuget 2019-04-14 18:03:31 +02:00
LICENSE Update LICENSE 2019-04-14 16:36:23 +02:00
Mk0.Tools.Password.sln reorganize 2019-04-14 18:02:05 +02:00
README.md Update README.md 2019-04-14 21:24:39 +02:00

README.md

Mk0.Tools.Password

(C) 2019 mk0.at

This includes the PasswordStrength Class which calculates the strength of a password. Usage: double score = PasswordStrength.Score("Te$tPassw0rD");

Also there is a password Generator. Usage: string password = new PasswordGenerator().Next();

You can use following one, some or all optional parameters: PasswordGenerator(int length, bool lowercase, bool uppercase, bool numeric, bool specialchars);