hsuan1117/laravel-hasher-ntlm

NTLM Hash for Laravel

1.0.2 2025-05-03 15:19 UTC

This package is auto-updated.

Last update: 2025-07-03 15:36:33 UTC


README

The package provides NTLM hashing for Laravel.

Installation

composer require hsuan1117/laravel-hasher-ntlm

Configuration

You must publish the configuration file to modify default hashing settings.

php artisan config:publish hashing

After publishing, you can find the configuration file at config/hashing.php. You can set the default driver to ntlm in the configuration file.

return [
    'driver' => 'ntlm',
];

References