/opt/alt/php71/usr/share/pear/Auth/SASL
NameSizeModeActions
Anonymous.php34530644editdlrm
Common.php43740644editdlrm
CramMD5.php34120644editdlrm
DigestMD5.php85510644editdlrm
External.php31160644editdlrm
Login.php31510644editdlrm
Plain.php31330644editdlrm
SCRAM.php125390644editdlrm
Edit: /opt/alt/php71/usr/share/pear/Auth/SASL/Login.php (3151B)
| // +-----------------------------------------------------------------------+ // // $Id$ /** * This is technically not a SASL mechanism, however * it's used by Net_Sieve, Net_Cyrus and potentially * other protocols , so here is a good place to abstract * it. * * @author Richard Heyes * @access public * @version 1.0 * @package Auth_SASL */ require_once('Auth/SASL/Common.php'); class Auth_SASL_Login extends Auth_SASL_Common { /** * Pseudo SASL LOGIN mechanism * * @param string $user Username * @param string $pass Password * @return string LOGIN string */ function getResponse($user, $pass) { return sprintf('LOGIN %s %s', $user, $pass); } } ?>