v0.2.0
password_strength
비밀번호 강도 추정기입니다. 사용자가 선택한 비밀번호가 브루트포스 또는 사전 공격에 대해 강력한지 여부를 보여주는 데 사용할 수 있습니다.
156좋아요 20만30일 다운로드160Pub 점수
AndroidiOSWebmacOSWindowsLinux
지정된 암호의 강도를 평가하는 Dart 패키지입니다.
^1.16.8아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
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.
import 'package:password_strength/password_strength.dart';
...
double strength = estimatePasswordStrength('passw0rd');
if (strength < 0.3)
print('This password is weak!');