PHP Package: symfony/password-hasher

A secure PHP library for hashing passwords using the Symfony framework.

Current Version: 7.2.0
Last Updated: 2024-11-29
PHP Requirement: >=7.1
Dependencies: symfony/security-core
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

The Symfony Password Hasher library provides a robust and efficient solution for securely hashing passwords in PHP applications. With support for multiple algorithms and options, it ensures a high level of protection for user credentials. Integrated seamlessly with the Symfony framework, this library simplifies password management tasks and enhances overall application security.

🔗 View on GitHub

Download Latest Version: 7.2.0

Download Download v7.2.0

Code Integration Example

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

<?php

// Example from PHPlibraries.com
require_once 'libs/symfony/password-hasher/7.2.0/autoload.php';

use Symfony\Component\Security\Core\Encoder\MessageDigestPasswordEncoder;


$obj = new Symfony\Component\Security\Core\Encoder\MessageDigestPasswordEncoder();
echo "✅ Example created successfully.";

?>

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