Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 447 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 447 Bytes

PHPass

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!');
}