All Projects → JinHoSo → flutter-password-strength

JinHoSo / flutter-password-strength

Licence: MIT license
A password strength checker for flutter.

Programming Languages

dart
5743 projects
swift
15916 projects

Projects that are alternatives of or similar to flutter-password-strength

NEMO
Modeling Password Guessability Using Markov Models
Stars: ✭ 46 (+155.56%)
Mutual labels:  password, strength
prompt-password-strength
Custom mask function for prompt-password that adds a 'strength progress meter' that changes color as the password strength increases. Uses zxcvbn, the popular password strength estimation tool brought to you by dropbox.
Stars: ✭ 18 (+0%)
Mutual labels:  password, strength
todos-express-password
Todo app using Express and Passport for sign in with username and password.
Stars: ✭ 739 (+4005.56%)
Mutual labels:  password
leaked-password
Leaked password check library with bloom filter
Stars: ✭ 41 (+127.78%)
Mutual labels:  password
OutlookPasswordRecovery
This tool usable for recover Outlook passwords and it working with all versions. I tested with 2007, 2010, 2013 and 2016.
Stars: ✭ 14 (-22.22%)
Mutual labels:  password
password-hasher
The PasswordHasher component provides password hashing utilities.
Stars: ✭ 425 (+2261.11%)
Mutual labels:  password
react-native-passmeter
Simple password strength meter for React Native.
Stars: ✭ 46 (+155.56%)
Mutual labels:  password
jumble-password
🔐 A tiny tool to create unique id's or passwords.
Stars: ✭ 30 (+66.67%)
Mutual labels:  password
ad-password-self-service
基于Python 3.8 + Django 3.2的密码自助平台,AD用户自助修改密码,结合<钉钉>/<企业微信>扫码验证信息后用户可自行重置密码、解锁自己的账号。
Stars: ✭ 76 (+322.22%)
Mutual labels:  password
webpassgen
Simple web-based password generator
Stars: ✭ 111 (+516.67%)
Mutual labels:  password
ios-application
A native, lightweight and secure one-time-password (OTP) client built for iOS; Raivo OTP!
Stars: ✭ 581 (+3127.78%)
Mutual labels:  password
password-list
Password lists with top passwords to optimize bruteforce attacks
Stars: ✭ 174 (+866.67%)
Mutual labels:  password
ComPP
Company Passwords Profiler (aka ComPP) helps making a bruteforce wordlist for a targeted company.
Stars: ✭ 44 (+144.44%)
Mutual labels:  password
cracken
a fast password wordlist generator, Smartlist creation and password hybrid-mask analysis tool written in pure safe Rust
Stars: ✭ 192 (+966.67%)
Mutual labels:  password
pwl
Password Lense: reveal character types in a password
Stars: ✭ 20 (+11.11%)
Mutual labels:  password
precis i18n
Python3 implementation of PRECIS framework (RFC 8264, RFC 8265, RFC 8266)
Stars: ✭ 16 (-11.11%)
Mutual labels:  password
django-pwned
A collection of django password validators
Stars: ✭ 22 (+22.22%)
Mutual labels:  password
mopass
A OpenSource Clientless & Serverless Password Manager
Stars: ✭ 40 (+122.22%)
Mutual labels:  password
jekyll-password-protect
Password protect Jekyll posts (formerly jekyll-firewall)
Stars: ✭ 60 (+233.33%)
Mutual labels:  password
react-login-registration
An example React / Redux / Redux Saga application talking to a Symfony 3 API
Stars: ✭ 31 (+72.22%)
Mutual labels:  password

flutter_password_strength

A password strength checker for flutter.

Features

  • Linear strength indicator.
  • Customise colors, borders, etc.

Screenshot

Usage

  import 'package:flutter_password_strength/flutter_password_strength.dart';

  FlutterPasswordStrength(
    password: _password, 
    strengthCallback: (strength){
      debugPrint(strength.toString());
    }
  )

Arguments

Arguments Default Type Description
password required String Password
width null double Strength bar width
height 5 double Strength bar height
strengthColors null TweenSequence 0.0 ~ 0.25 : red, 0.26 ~ 0.5 : yellow, 0.51 ~ 0.75 : blue, 0.76 ~ 1 : green
backgroundColor Colors.grey Color background for strength bar
radius 0 double Strength bar radius
duration milliseconds: 300 Duration Animation duration
strengthCallback null void Function(double strength) Strength callback, return between 0 to 1
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].