garybell/password-validator
Composer 安装命令:
composer require garybell/password-validator
包简介
Password validation determined by password entropy
README 文档
README
Validate passwords using entropy rather than arbitrary rules.
This is a PHP port of Lane Wagner's Go Password Validator
This project can be used to front a password strength meter, or simply validate password strength on the server. Benefits:
- No stupid rules (doesn't require uppercase, numbers, special characters, etc)
- Everything is based on entropy (raw cryptographic strength of the password)
- Inspired by this XKCD

What Entropy Value Should I Use?
It's up to you. That said, here is a pretty good graph that shows some timings for different values:

Somewhere in the 50-70 range seems "average"
Installation and Usage
Install the library with composer:
composer require garybell/password-validator
To use the functionality call any of the functions within the class using the password as a parameter. All functions are static, so don't need the PasswordValidator object creating prior to use.
Examples:
// Get the base of the password (characters from different character sets used)
$base = GaryBell\PasswordValidator::getBase($password);
// get the length of the password (characters used (only allows 2 of any single character)
$length = GaryBell\PasswordValidator::getLength($password);
// get the entropy of the password
$entropy = GaryBell\PasswordValidator::getEntropy($password);
The getEntropy functionality has an optional parameter of decimalPlaces, to determine the accuracy of the entropy.
This is 2 decimal places by default. To reduce this to 1 decimal place, use:
$entropy = GaryBell\PasswordValidator::getEntropy($password, 1);
Similarly, for 4 decimal places, use:
$entropy = GaryBell\PasswordValidator::getEntropy($password, 4);
Version 0.x and 1.x
Version 0.x and 1.x are no longer supported. They can still be used (so for those running PHP 7.3). The latest release for the 1.x version is 1.0.1. Usage instructions are available via the wiki
How It Works
First, we determine the "base" number. The base is a sum of the different "character sets" found in the password.
The current character sets include:
- 26 lowercase letters
- 26 uppercase
- 10 digits
- 32 special characters -
!"#$%&'()*+,-./:;<=>?@[\]^_{|}~
Using at least one character from each set your base number will be 94: 26+26+10+32 = 94
Every unique character that doesn't match one of those sets will add 1 to the base.
If you only use, for example, lowercase letters and numbers, your base will be 36: 26+10 = 36.
After we have calculated a base, the total number of brute-force-guesses is found using the following formulae: base^length
A password using base 26 with 7 characters would require 26^7, or 8031810176 guesses.
Once we know the number of guesses it would take, we can calculate the actual entropy in bits using ln(guesses).
garybell/password-validator 适用场景与选型建议
garybell/password-validator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 110.36k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2020 年 10 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「security」 「validation」 「password」 「strength」 「entropy」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 garybell/password-validator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 garybell/password-validator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 garybell/password-validator 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The PHP class PasswordGenerator serves as a password generator to create memorable passwords like the keychain of macOS ≤ 10.14 did.
Provide a way to secure accesses to all routes of an symfony application.
Laravel middleware to restrict a site or specific routes using HTTP basic authentication
High-level cryptographic primitives and security utilities for Maatify systems including password hashing, reversible encryption, HKDF key derivation, and key rotation.
A library for reading KeePass 2.x databases
It's a barebone security class written on PHP
统计信息
- 总下载量: 110.36k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 25
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-10-22