A Composer-friendly PHPass port

v0.3.0 2016-02-17 04:30 UTC

This package is not auto-updated.

Last update: 2024-04-19 16:30:22 UTC


README

A delicately modified port of the original PHPass hashing framework, made Composer-friendly.

Installation

composer install friartuck6000/phpass

Usage

use Phpass\PasswordHash;

$hasher = new PasswordHash(8, false);

// Generate a hash
$hash = $hasher->HashPassword('abc12345');

// Check a hash
if (!$hasher->CheckPassword('abc12345', $hash)) {
    die('Incorrect password!');
}