68b0380118
forbid logins via regular passwords for services remove AUTH_DISABLE_OTP
5 lines
115 B
PHP
5 lines
115 B
PHP
<?php
|
|
interface IAuthModule {
|
|
function authenticate($login, $password); // + optional third parameter: $service
|
|
}
|