12 lines
344 B
PHP
12 lines
344 B
PHP
<?php
|
|
/**
|
|
* @copyright 2008 City of Bloomington, Indiana
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.txt
|
|
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
|
*/
|
|
|
|
interface ExternalAuthentication
|
|
{
|
|
public static function authenticate($username,$password);
|
|
public static function savePassword($username,$password);
|
|
} |