PHP Package: bordoni/phpass
PHPass library for secure password hashing and password-based key derivation functions.
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.
Download Latest Version: 0.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.