/usr/share/php/Crypt/Blowfish.php is in php-crypt-blowfish 1.1.0~RC2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | <?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
/**
* Crypt_Blowfish allows for encryption and decryption on the fly using
* the Blowfish algorithm. Crypt_Blowfish does not require the MCrypt
* PHP extension, but uses it if available, otherwise it uses only PHP.
* Crypt_Blowfish supports encryption/decryption with or without a secret key.
*
* PHP versions 4 and 5
*
* @category Encryption
* @package Crypt_Blowfish
* @author Matthew Fonda <mfonda@php.net>
* @copyright 2005-2008 Matthew Fonda
* @license http://www.opensource.net/licenses/bsd-license.php New BSD
* @version CVS: $Id: Blowfish.php,v 1.86 2008/08/30 21:53:50 jausions Exp $
* @link http://pear.php.net/package/Crypt_Blowfish
*/
/**
* Required PEAR package(s)
*/
require_once 'PEAR.php';
/**
* Engine choice constants
*/
/**
* To let the Crypt_Blowfish package decide which engine to use
* @since 1.1.0
*/
define('CRYPT_BLOWFISH_AUTO', 1);
/**
* To use the MCrypt PHP extension.
* @since 1.1.0
*/
define('CRYPT_BLOWFISH_MCRYPT', 2);
/**
* To use the PHP-only engine.
* @since 1.1.0
*/
define('CRYPT_BLOWFISH_PHP', 3);
/**
* Example using the factory method in CBC mode
*
* <code>
* $bf =& Crypt_Blowfish::factory('cbc');
* if (PEAR::isError($bf)) {
* echo $bf->getMessage();
* exit;
* }
* $iv = 'abc123+=';
* $key = 'My secret key';
* $bf->setKey($key, $iv);
* $encrypted = $bf->encrypt('this is some example plain text');
* $bf->setKey($key, $iv);
* $plaintext = $bf->decrypt($encrypted);
* if (PEAR::isError($plaintext)) {
* echo $plaintext->getMessage();
* exit;
* }
* // Encrypted text is padded prior to encryption
* // so you may need to trim the decrypted result.
* echo 'plain text: ' . trim($plaintext);
* </code>
*
* To disable using the mcrypt library, define the CRYPT_BLOWFISH_NOMCRYPT
* constant. This is useful for instance on Windows platform with a buggy
* mdecrypt_generic() function.
* <code>
* define('CRYPT_BLOWFISH_NOMCRYPT', true);
* </code>
*
* @category Encryption
* @package Crypt_Blowfish
* @author Matthew Fonda <mfonda@php.net>
* @author Philippe Jausions <jausions@php.net>
* @copyright 2005-2008 Matthew Fonda
* @license http://www.opensource.net/licenses/bsd-license.php New BSD
* @link http://pear.php.net/package/Crypt_Blowfish
* @version 1.1.0RC2
* @access public
*/
class Legacy_Crypt_Blowfish
{
/**
* Implementation-specific Crypt_Blowfish object
*
* @var object
* @access private
*/
var $_crypt = null;
/**
* Initialization vector
*
* @var string
* @access protected
*/
var $_iv = null;
/**
* Holds block size
*
* @var integer
* @access protected
*/
var $_block_size = 8;
/**
* Holds IV size
*
* @var integer
* @access protected
*/
var $_iv_size = 8;
/**
* Holds max key size
*
* @var integer
* @access protected
*/
var $_key_size = 56;
/**
* Crypt_Blowfish Constructor
* Initializes the Crypt_Blowfish object (in EBC mode), and sets
* the secret key
*
* @param string $key
* @access public
* @deprecated Since 1.1.0
* @see Crypt_Blowfish::factory()
*/
function Legacy_Crypt_Blowfish($key)
{
$this->_crypt =& Legacy_Crypt_Blowfish::factory('ecb', $key);
if (!PEAR::isError($this->_crypt)) {
$this->_crypt->setKey($key);
}
}
/**
* Crypt_Blowfish object factory
*
* This is the recommended method to create a Crypt_Blowfish instance.
*
* When using CRYPT_BLOWFISH_AUTO, you can force the package to ignore
* the MCrypt extension, by defining CRYPT_BLOWFISH_NOMCRYPT.
*
* @param string $mode operating mode 'ecb' or 'cbc' (case insensitive)
* @param string $key
* @param string $iv initialization vector (must be provided for CBC mode)
* @param integer $engine one of CRYPT_BLOWFISH_AUTO, CRYPT_BLOWFISH_PHP
* or CRYPT_BLOWFISH_MCRYPT
* @return object Crypt_Blowfish object or PEAR_Error object on error
* @access public
* @static
* @since 1.1.0
*/
function &factory($mode = 'ecb', $key = null, $iv = null, $engine = CRYPT_BLOWFISH_AUTO)
{
switch ($engine) {
case CRYPT_BLOWFISH_AUTO:
if (!defined('CRYPT_BLOWFISH_NOMCRYPT')
&& extension_loaded('mcrypt')) {
$engine = CRYPT_BLOWFISH_MCRYPT;
} else {
$engine = CRYPT_BLOWFISH_PHP;
}
break;
case CRYPT_BLOWFISH_MCRYPT:
if (!PEAR::loadExtension('mcrypt')) {
return PEAR::raiseError('MCrypt extension is not available.');
}
break;
}
switch ($engine) {
case CRYPT_BLOWFISH_PHP:
$mode = strtoupper($mode);
$class = 'Crypt_Blowfish_' . $mode;
include_once 'Crypt/Blowfish/' . $mode . '.php';
$crypt = new $class(null);
break;
case CRYPT_BLOWFISH_MCRYPT:
include_once 'Crypt/Blowfish/MCrypt.php';
$crypt = new Crypt_Blowfish_MCrypt(null, $mode);
break;
}
if (!is_null($key) || !is_null($iv)) {
$result = $crypt->setKey($key, $iv);
if (PEAR::isError($result)) {
return $result;
}
}
return $crypt;
}
/**
* Returns the algorithm's block size
*
* @return integer
* @access public
* @since 1.1.0
*/
function getBlockSize()
{
return $this->_block_size;
}
/**
* Returns the algorithm's IV size
*
* @return integer
* @access public
* @since 1.1.0
*/
function getIVSize()
{
return $this->_iv_size;
}
/**
* Returns the algorithm's maximum key size
*
* @return integer
* @access public
* @since 1.1.0
*/
function getMaxKeySize()
{
return $this->_key_size;
}
/**
* Deprecated isReady method
*
* @return bool
* @access public
* @deprecated
*/
function isReady()
{
return true;
}
/**
* Deprecated init method - init is now a private
* method and has been replaced with _init
*
* @return bool
* @access public
* @deprecated
*/
function init()
{
return $this->_crypt->init();
}
/**
* Encrypts a string
*
* Value is padded with NUL characters prior to encryption. You may
* need to trim or cast the type when you decrypt.
*
* @param string $plainText the string of characters/bytes to encrypt
* @return string|PEAR_Error Returns cipher text on success, PEAR_Error on failure
* @access public
*/
function encrypt($plainText)
{
return $this->_crypt->encrypt($plainText);
}
/**
* Decrypts an encrypted string
*
* The value was padded with NUL characters when encrypted. You may
* need to trim the result or cast its type.
*
* @param string $cipherText the binary string to decrypt
* @return string|PEAR_Error Returns plain text on success, PEAR_Error on failure
* @access public
*/
function decrypt($cipherText)
{
return $this->_crypt->decrypt($cipherText);
}
/**
* Sets the secret key
* The key must be non-zero, and less than or equal to
* 56 characters (bytes) in length.
*
* If you are making use of the PHP MCrypt extension, you must call this
* method before each encrypt() and decrypt() call.
*
* @param string $key
* @return boolean|PEAR_Error Returns TRUE on success, PEAR_Error on failure
* @access public
*/
function setKey($key)
{
return $this->_crypt->setKey($key);
}
}
?>
|