marko/hashing

Password hashing and verification for Marko Framework

Maintainers

Package info

github.com/marko-php/marko-hashing

Type:marko-module

pkg:composer/marko/hashing

Statistics

Installs: 6

Dependents: 1

Suggesters: 0

Stars: 0

0.0.1 2026-03-25 17:53 UTC

This package is auto-updated.

Last update: 2026-03-25 21:07:46 UTC


README

Password hashing and verification with configurable algorithms--hash passwords securely without worrying about algorithm details.

Installation

composer require marko/hashing

Quick Example

use Marko\Hashing\HashManager;

$hash = $hashManager->hash('secret');
$hashManager->verify('secret', $hash); // true
$hashManager->needsRehash($hash);      // false (until config changes)

Documentation

Full usage, API reference, and examples: marko/hashing