An open API service indexing awesome lists of open source software.

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#

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
}
```