FLUTTER ECOSYSTEM

pikaju/password-strength

一个用于评估给定密码强度的 Dart 包。

密码强度 项目封面
Stars
23
Forks
5
最近推送(UTC)
2021年7月29日
项目状态
未归档
Julien Scholz GitHub avatar
GITHUB User

Julien Scholz ↗

Software engineer and wannabe entrepreneur

Hamburg, Germany
语言Dart

此仓库发布的插件

使用的依赖

依赖清单 1 项
  • test开发依赖^1.16.8

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

Password Strength Estimator

A basic password strength estimator for Dart. Considers the length of the password, used characters, and whether or not the password appears in the top 10,000 most used passwords.

Usage

import 'package:password_strength/password_strength.dart';

...

double strength = estimatePasswordStrength('passw0rd');

if (strength < 0.3)
  print('This password is weak!');