PHP Package: roots/wp-password-bcrypt

Enhance WordPress security by using bcrypt for password hashing, improving protection against brute force attacks and unauthorized access.

Current Version: 1.2.0
Last Updated: 2024-09-10
PHP Requirement: >=5.6.0
Dependencies:
composer/installers
ircmaxell/password-compat
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

The wp-password-bcrypt PHP library strengthens WordPress security by implementing bcrypt for secure password hashing. By integrating this library, site owners can significantly enhance their defenses against brute force attacks and unauthorized logins. The bcrypt algorithm offers robust encryption, ensuring that user passwords remain safeguarded against modern cyber threats.

🔗 View on GitHub

Download Latest Version: 1.3.0

Clock Coming soon

Previous Versions

Code Integration Example

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

<?php
// Example from PHPlibraries.com
require_once 'libs/roots/wp-password-bcrypt/1.3.0/loader.php';
require_once 'libs/composer/installers/2.3.0/loader.php';
require_once 'libs/ircmaxell/password-compat/{lib_version}/loader.php';

use Roots\WP_Password_Bcrypt\Bcrypt_Hasher;
use Roots\WP_Password_Bcrypt\Password;

$obj = new Bcrypt_Hasher();
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.