pentagonal / phpass
PHP password hashing library original by open wall PhPass
Installs: 1 432
Dependents: 1
Suggesters: 1
Security: 0
Stars: 12
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.2
This package is not auto-updated.
Last update: 2024-12-21 20:46:12 UTC
README
Script base on OpenWall's PhPass, based on the 0.3 release, change to ready for:
- Name Space
- Composer (Autoload)
- PHP 5
- Unit Tested
There was make some changes and add 2 methods & Name Space , to make the password hash could use install on composer and Name Space Support.
We are not claim of the projects, but we just add some comments and make more compatible with new version of PHP for our projects.
Change & Additional
VERSION 1.1.0
- Add 1 static method `isMaybeHash` for checking is hashed string
- Add `VERSION` constant
VERSION 1.0
- Dump version to 1.0.0
- Add Comments
- Adding visibility on methods & property
- Add 2 methods alternative `verify` & `hash`
- Remove /dev/urandom , that maybe thrown of error as random state ( default uses loop )
Installation
Add requirement to the composer.json
file and run composer install
:
{ "require": { "pentagonal/phpass": "1.1" } }
Usage
<?php /** * Require Autoload From Vendor */ require_once(__DIR__ . "/vendor/autoload.php"); /** * Initiate of PasswordHash * @type Object instance of \Pentagonal\PhPass\PasswordHash */ $passwordHash = new \Pentagonal\PhPass\PasswordHash(); /** * Hash the string of password * @uses \Pentagonal\PhPass\PasswordHash::hashPassword([string] password) | or use hash([string] password) as another method aliases * @type string */ $hashedPassword = $passwordHash->hashPassword('The String Plain Text Password'); /** * Check password match * @uses \Pentagonal\PhPass\PasswordHash::checkPassword([string] password, [string] hashedPassword) | or use check([string] password, [string] hashedPassword) as another method aliases * @type string */ $isPasswordMatch = $passwordHash->checkPassword('The String Plain Text Password', $hashedPassword); /** * Check if string maybe hashed */ $isHashed = Pentagonal\PhPass\PasswordHash::isMaybeHash($hashedPassword);