From a98a4f8bb56eacffff1765ff09dd29af26e5fc12 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Wed, 27 Aug 2014 17:45:21 +0200 Subject: Remove 3rd party libs from our repository and define the dependencies in composer.json-dist. Also remove the ancient utf8 lib and replace it with 'Patchwork UTF-8 for PHP'. For direct git checkouts, copy composer.json-dist into composer.json and run `php composer.phar install` to install the dependencies. --- program/lib/Auth/SASL.php | 125 ---------------------------------------------- 1 file changed, 125 deletions(-) delete mode 100644 program/lib/Auth/SASL.php (limited to 'program/lib/Auth/SASL.php') diff --git a/program/lib/Auth/SASL.php b/program/lib/Auth/SASL.php deleted file mode 100644 index 5bd6eb096..000000000 --- a/program/lib/Auth/SASL.php +++ /dev/null @@ -1,125 +0,0 @@ - | -// +-----------------------------------------------------------------------+ -// -// $Id$ - -/** -* Client implementation of various SASL mechanisms -* -* @author Richard Heyes -* @access public -* @version 1.0 -* @package Auth_SASL -*/ - -require_once('PEAR.php'); - -class Auth_SASL -{ - /** - * Factory class. Returns an object of the request - * type. - * - * @param string $type One of: Anonymous - * Plain - * CramMD5 - * DigestMD5 - * SCRAM-* (any mechanism of the SCRAM family) - * Types are not case sensitive - */ - function &factory($type) - { - switch (strtolower($type)) { - case 'anonymous': - $filename = 'Auth/SASL/Anonymous.php'; - $classname = 'Auth_SASL_Anonymous'; - break; - - case 'login': - $filename = 'Auth/SASL/Login.php'; - $classname = 'Auth_SASL_Login'; - break; - - case 'plain': - $filename = 'Auth/SASL/Plain.php'; - $classname = 'Auth_SASL_Plain'; - break; - - case 'external': - $filename = 'Auth/SASL/External.php'; - $classname = 'Auth_SASL_External'; - break; - - case 'crammd5': - // $msg = 'Deprecated mechanism name. Use IANA-registered name: CRAM-MD5.'; - // trigger_error($msg, E_USER_DEPRECATED); - case 'cram-md5': - $filename = 'Auth/SASL/CramMD5.php'; - $classname = 'Auth_SASL_CramMD5'; - break; - - case 'digestmd5': - // $msg = 'Deprecated mechanism name. Use IANA-registered name: DIGEST-MD5.'; - // trigger_error($msg, E_USER_DEPRECATED); - case 'digest-md5': - // $msg = 'DIGEST-MD5 is a deprecated SASL mechanism as per RFC-6331. Using it could be a security risk.'; - // trigger_error($msg, E_USER_NOTICE); - $filename = 'Auth/SASL/DigestMD5.php'; - $classname = 'Auth_SASL_DigestMD5'; - break; - - default: - $scram = '/^SCRAM-(.{1,9})$/i'; - if (preg_match($scram, $type, $matches)) - { - $hash = $matches[1]; - $filename = dirname(__FILE__) .'/SASL/SCRAM.php'; - $classname = 'Auth_SASL_SCRAM'; - $parameter = $hash; - break; - } - return PEAR::raiseError('Invalid SASL mechanism type'); - break; - } - - require_once($filename); - if (isset($parameter)) - $obj = new $classname($parameter); - else - $obj = new $classname(); - return $obj; - } -} - -?> -- cgit v1.2.3