https://github.com/devolutions/zxcvbn
This is a port of Zxcvbn in C#
https://github.com/devolutions/zxcvbn
Last synced: 3 months ago
JSON representation
This is a port of Zxcvbn in C#
- Host: GitHub
- URL: https://github.com/devolutions/zxcvbn
- Owner: Devolutions
- License: other
- Created: 2020-02-06T15:44:32.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-10T17:24:13.000Z (over 1 year ago)
- Last Synced: 2024-11-18T22:03:39.127Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 407 KB
- Stars: 4
- Watchers: 9
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Zxcvbn
This is a port of [Zxcvbn](https://github.com/dropbox/zxcvbn) in C#
## Usage
```csharp
using Devolutions.Zxcvbn;
foreach (var password in passwords)
{
ZxcvbnResult result = Zxcvbn.Evaluate(password);
int score = result.Score; // Score from 0 to 4
}
```