paragonie/password_lock
Composer 安装命令:
composer require paragonie/password_lock
包简介
Wraps Bcrypt-SHA2 in Authenticated Encryption
README 文档
README
MIT Licensed - feel free to use to enhance the security of any of your PHP projects
Wraps Bcrypt-SHA384 in Authenticated Encryption. Published by Paragon Initiative Enterprises. Check out our other open source projects too.
Depends on defuse/php-encryption for authenticated symmetric-key encryption.
How is this different than "peppering"?
Peppering strategies are usually accomplished through a keyed hash function (e.g. HMAC-SHA256) and applies to the password before it's passed to the salted hash API (i.e. bcrypt). If your pepper/HMAC key is ever compromised, you have to reset every user's password and it becomes a headache.
A hash then encrypt strategy offers agility; if your secret key is compromised (but, miraculously, the hashes are not), you can decrypt all of your users' hashes then re-encrypt them with a new key and they'll never suffer the inconvenience of an unscheduled password reset.
How much more secure is this than just using bcrypt?
- You don't have to worry about the 72 character limit for bcrypt
- You don't have to worry about accidentally creating a null-byte truncation vulnerability
- If your database gets hacked, and your database is on a separate machine from your webserver, the attacker has to first decrypt the hashes before attempting to crack any of them.
Here's a proof-of-concept for the first two points.
But realistically, this library is only about as a secure as bcrypt.
Usage Examples
Hash Password, Encrypt Hash, Authenticate Ciphertext
use \ParagonIE\PasswordLock\PasswordLock; use \Defuse\Crypto\Key; $key = Key::createNewRandomKey(); if (isset($_POST['password'])) { if (!is_string($_POST['password'])) { die("Password must be a string"); } $storeMe = PasswordLock::hashAndEncrypt($_POST['password'], $key); }
Verify MAC, Decrypt Ciphertext, Verify Password
if (isset($_POST['password'])) { if (!is_string($_POST['password'])) { die("Password must be a string"); } if (PasswordLock::decryptAndVerify($_POST['password'], $storeMe, $key)) { // Success! } }
Determine if a re-hash is necessary
use ParagonIE\PasswordLock\PasswordLock; /** * @var string $encryptedPwhash * @var Defuse\Crypto\Key $key */ if (PasswordLock::needsRehash($encryptedPwhash, $key)) { // Recalculate PasswordLock::hashAndEncrypt() }
Re-encrypt a hash with a different encryption key
$newKey = \Defuse\Crypto\Key::createNewRandomKey(); $newHash = PasswordLock::rotateKey($storeMe, $key, $newKey);
Migrate from Version 1 of the library
$newHash = PasswordLock::upgradeFromVersion1( $_POST['password'], $oldHash, $oldKey, $newKey );
Support Contracts
If your company uses this library in their products or services, you may be interested in purchasing a support contract from Paragon Initiative Enterprises.
paragonie/password_lock 适用场景与选型建议
paragonie/password_lock 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 51.64k 次下载、GitHub Stars 达 193, 最近一次更新时间为 2015 年 04 月 21 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「password」 「hash」 「encryption」 「hashing」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 paragonie/password_lock 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 paragonie/password_lock 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 paragonie/password_lock 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A simple PHP class to encrypt a string and decrypt an encrypted string
The PHP class PasswordGenerator serves as a password generator to create memorable passwords like the keychain of macOS ≤ 10.14 did.
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Encryption with AES-256 and HMAC-SHA256
Laravel middleware to restrict a site or specific routes using HTTP basic authentication
Article CSS-ID Frontend Output Optimization
统计信息
- 总下载量: 51.64k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 194
- 点击次数: 32
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-04-21