15 lines
271 B
PHP
15 lines
271 B
PHP
<?php
|
|
/**
|
|
* loginManager/lmPassword.php
|
|
* @version 1.0
|
|
* @desc interface for function verifying password
|
|
* @author Fándly Gergő Zoltán
|
|
* @copy 2017 Fándly Gergő Zoltán
|
|
*/
|
|
|
|
interface lmPassword{
|
|
public function verifyPassword($cleartext, $database);
|
|
}
|
|
|
|
?>
|