PHP Package: bordoni/phpass

PHPass library for secure password hashing and password-based key derivation functions.

Current Version: 0.3.6
Last Updated: 2022-05-27
PHP Requirement: >=5.3.3
Dependencies:
ircmaxell/password-compat
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

PHPass is a PHP library that provides secure password hashing using bcrypt or portable hashing methods. It also supports password-based key derivation functions for generating cryptographic keys from passwords. PHPass ensures data security and protection against password cracking attacks.

🔗 View on GitHub

Download Latest Version: 0.3.6

Download Download v0.3.6

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/bordoni/phpass/0.3.6/loader.php';
require_once 'libs/ircmaxell/password-compat/{lib_version}/loader.php';

use PHPass\PasswordHash;

$obj = new PasswordHash();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.