13 lines
294 B
PHP
13 lines
294 B
PHP
<?php
|
|
|
|
namespace Slovocast\Infrastructure\User;
|
|
|
|
/**
|
|
* A simple interface for securing and checking secured passwords for a user
|
|
*/
|
|
interface UserAuthorizationInterface
|
|
{
|
|
public function hash(string $password): string;
|
|
public function verify(string $password, string $hash): bool;
|
|
}
|