Files
SignUp/config/lib/loginManager/lmPassword.php
2019-08-08 16:40:15 +03:00

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);
}
?>