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!');