📋 Commit iniziale con: - ✅ Documentazione unificata in docs/ - ✅ Codice Laravel in netgescon-laravel/ - ✅ Script automazione in scripts/ - ✅ Configurazione sync rsync - ✅ Struttura organizzata e pulita 🔄 Versione: 2025.07.19-1644 🎯 Sistema pronto per Git distribuito
43 lines
992 B
PHP
43 lines
992 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Hashing;
|
|
|
|
interface Hasher
|
|
{
|
|
/**
|
|
* Get information about the given hashed value.
|
|
*
|
|
* @param string $hashedValue
|
|
* @return array
|
|
*/
|
|
public function info($hashedValue);
|
|
|
|
/**
|
|
* Hash the given value.
|
|
*
|
|
* @param string $value
|
|
* @param array $options
|
|
* @return string
|
|
*/
|
|
public function make(#[\SensitiveParameter] $value, array $options = []);
|
|
|
|
/**
|
|
* Check the given plain value against a hash.
|
|
*
|
|
* @param string $value
|
|
* @param string $hashedValue
|
|
* @param array $options
|
|
* @return bool
|
|
*/
|
|
public function check(#[\SensitiveParameter] $value, $hashedValue, array $options = []);
|
|
|
|
/**
|
|
* Check if the given hash has been hashed using the given options.
|
|
*
|
|
* @param string $hashedValue
|
|
* @param array $options
|
|
* @return bool
|
|
*/
|
|
public function needsRehash($hashedValue, array $options = []);
|
|
}
|