yarri / my-blowfish
Simple class for passwords hashing and checking using Blowfish algorithm
Installs: 33 490
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.3.0
Requires (Dev)
- atk14/tester: ^0.2
This package is auto-updated.
Last update: 2024-10-25 15:12:49 UTC
README
MyBlowfish is a simple PHP class for passwords hashing and checking using Blowfish algorithm. It is fully tested in PHP from version 5.3 to 8.0.
It was originally developed for ATK14 Framework. But it can be fit in any other application.
Basic usage
$password = "honeyBump";
MyBlowfish::IsHash($password); // false
$hash = MyBlowfish::Filter($password);
MyBlowfish::IsHash($hash); // true
// A different salt is used automatically in another call of Filter().
// So the new hash from the same password differs from the old one.
$hash2 = MyBlowfish::Filter($password); // $hash2 !== $hash
// Filter() doesn't make hash from a hash!
$hash3 = MyBlowfish::Filter($hash); // $hash3 === $hash
// There is also method GetHash() which makes hash in every case.
$hash4 = MyBlowfish::GetHash($hash); // $hash4 !== $hash
MyBlowfish::CheckPassword($password,$hash); // true
MyBlowfish::CheckPassword("badTry",$hash); // false
MyBlowfish::CheckPassword($hash,$hash); // false
MyBlowfish::CheckPassword($password,$hash2); // true
MyBlowfish::CheckPassword($password,$hash4); // false
MyBlowfish::CheckPassword($hash,$hash4); // true
MyBlowfish::CheckPassword($password,$password); // false; 2nd params is not a blowfish hash
Blowfish rounds
Complexity of calculation of a Blowfish hash can be affected by the number of Blowfish rounds. The higher value of Blowfish rounds is, the more time consumption the password cracking process can be. In MyBlowfish the default value is set to 12.
Number of Blowfish rounds can be set by the constant MY_BLOWFISH_ROUNDS.
// min .. 4
// max .. 31
// optimal .. 10, 11, 12
// default .. 12
define('MY_BLOWFISH_ROUNDS',12);
Beware that high values of Blowfish rounds may lead to unwanted long time of hash calculation.
Blowfish hash prefixes
Blowfish hashes are prefixed either with , or . MyBlowfish can handle all of them.
Default prefix can be set by the constant MY_BLOWFISH_PREFIX. By default it is .
// default .. '$2a$'
define('MY_BLOWFISH_PREFIX','$2b$');
Popular integration into a ATK14 project
Consider a table 'users' which has among the others textual fields 'login' and 'password'. In the field 'password' we don't want to store passwords in the readable form. We just want to store Blowfish hashes in there. This can be achieved in the model class User.
<?php
// file: app/models/user.php
class User extends ApplicationModel {
/**
* During a new user creation it provides transparent password hashing when it's needed
*
* $user = User::CreateNewRecord([
* "login" => "rambo",
* "password" => "secret123"
* ]);
*/
static function CreateNewRecord($values,$options = []){
if(isset($values["password"])){
$values["password"] = MyBlowfish::Filter($values["password"]);
}
return parent::CreateNewRecord($values,$options);
}
/**
* It provides transparent password hashing during setting new values
*
* $rambo->setValues(["password" => "newModelArmy"]);
*/
function setValues($values,$options = []){
if(isset($values["password"])){
$values["password"] = MyBlowfish::Filter($values["password"]);
}
return parent::setValues($values,$options);
}
/**
* Returns user when a correct combination of login and password is given.
*
* $user = User::Login("rambo","secret123");
*/
static function Login($login,$password){
$user = User::FindByLogin($login);
if(!$user){ return; }
if(MyBlowfish::CheckPassword($password,$user->getPassword())){
return $user;
}
}
}
Let's test it in the ATK14 console:
php > $user = User::CreateNewRecord(['login' => 'rambo', 'password' => 'secret123']);
php > echo $user->getPassword();
$2a$12$w984Nf6g67ZZKqvXgQWqwuj4mOn9Ptmw.dMNs/A7G9Cj/mt/w5buy
php > $user->setValue('password','newModelArmy');
php > echo $user->getPassword();
$2a$12$2ljCknUGAtf5lSAo0txoFO9qqGH2dxLDr31Ii4VSHca0Zb8cHZZgu
php > $user->setValue('password','$2a$12$2ljCknUGAtf5lSAo0txoFO9qqGH2dxLDr31Ii4VSHca0Zb8cHZZgu');
php > echo $user->getPassword();
$2a$12$2ljCknUGAtf5lSAo0txoFO9qqGH2dxLDr31Ii4VSHca0Zb8cHZZgu
Installation
The best way how to install MyBlowfish is to use the Composer:
composer require yarri/my-blowfish
License
MyBlowfish is free software distributed under the terms of the MIT license