From 2fbeecc42af817a3a226a4b7495f4af5f694c861 Mon Sep 17 00:00:00 2001 From: manuelkamp <48356947+manuelkamp@users.noreply.github.com> Date: Sun, 14 Apr 2019 21:24:39 +0200 Subject: [PATCH] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8eab74c..f7bd9e2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,13 @@ -# Mk0.Tools.PasswordStrength +# 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);