9 lines
211 B
PHP
9 lines
211 B
PHP
<?php
|
|
|
|
namespace Ulmus\User\Entity;
|
|
|
|
interface DigestAuthUserInterface extends UserInterface
|
|
{
|
|
# Represent a hash (md5, sha256, ...) of username:realm:password
|
|
public function getSecretHash() : string;
|
|
} |