2001-01-11 10:52:33 +01:00
|
|
|
<?php
|
2001-12-20 17:19:55 +01:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare API - Crypto *
|
|
|
|
* This file written by Joseph Engo <jengo@phpgroupware.org> *
|
|
|
|
* Handles encrypting strings based on various encryption schemes *
|
|
|
|
* Copyright (C) 2000, 2001 Dan Kuykendall *
|
|
|
|
* -------------------------------------------------------------------------*
|
|
|
|
* This library is part of the phpGroupWare API *
|
|
|
|
* http://www.phpgroupware.org/api *
|
|
|
|
* -------------------------------------------------------------------------*
|
|
|
|
* This library is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU Lesser General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2.1 of the License, *
|
|
|
|
* or any later version. *
|
|
|
|
* This library is distributed in the hope that it will be useful, but *
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
|
|
* See the GNU Lesser General Public License for more details. *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
|
|
* along with this library; if not, write to the Free Software Foundation, *
|
|
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
|
|
|
|
\**************************************************************************/
|
2001-12-14 22:38:40 +01:00
|
|
|
|
|
|
|
/* $Id$ */
|
2001-12-20 17:19:55 +01:00
|
|
|
|
2001-05-06 15:19:42 +02:00
|
|
|
class crypto
|
|
|
|
{
|
2001-06-16 21:02:31 +02:00
|
|
|
var $enabled = False;
|
2001-12-20 17:19:55 +01:00
|
|
|
var $debug = False;
|
|
|
|
|
2001-06-16 21:02:31 +02:00
|
|
|
var $mcrypt_version = '';
|
2001-12-20 17:19:55 +01:00
|
|
|
var $algo = MCRYPT_TRIPLEDES;
|
|
|
|
var $mode = MCRYPT_MODE_CBC;
|
|
|
|
var $td = False; /* Handle for mcrypt */
|
2001-05-06 15:19:42 +02:00
|
|
|
var $iv = '';
|
|
|
|
var $key = '';
|
|
|
|
|
|
|
|
function crypto($vars)
|
|
|
|
{
|
|
|
|
$key = $vars[0];
|
2001-10-17 20:15:04 +02:00
|
|
|
$iv = $vars[1];
|
|
|
|
if ($GLOBALS['phpgw_info']['server']['mcrypt_enabled'] && extension_loaded('mcrypt'))
|
2001-05-06 15:19:42 +02:00
|
|
|
{
|
2001-12-20 17:19:55 +01:00
|
|
|
if($GLOBALS['phpgw_info']['server']['mcrypt_algo'])
|
|
|
|
{
|
|
|
|
$this->algo = $GLOBALS['phpgw_info']['server']['mcrypt_algo'];
|
|
|
|
}
|
|
|
|
if($GLOBALS['phpgw_info']['server']['mcrypt_mode'])
|
|
|
|
{
|
|
|
|
$this->mode = $GLOBALS['phpgw_info']['server']['mcrypt_mode'];
|
|
|
|
}
|
|
|
|
|
2001-12-20 18:58:48 +01:00
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>crypto: algorithm=' . $this->algo;
|
|
|
|
echo '<br>crypto: mode =' . $this->mode;
|
|
|
|
}
|
|
|
|
|
2001-06-16 21:02:31 +02:00
|
|
|
$this->enabled = True;
|
2001-10-17 20:15:04 +02:00
|
|
|
$this->mcrypt_version = $GLOBALS['phpgw_info']['server']['versions']['mcrypt'];
|
2001-06-16 21:02:31 +02:00
|
|
|
if ($this->mcrypt_version == 'old')
|
2001-05-06 15:19:42 +02:00
|
|
|
{
|
2001-12-14 22:38:40 +01:00
|
|
|
$this->td = False;
|
2001-05-06 15:19:42 +02:00
|
|
|
if (phpversion() > '4.0.2pl1')
|
|
|
|
{
|
2001-12-20 17:19:55 +01:00
|
|
|
$keysize = mcrypt_get_key_size($this->algo);
|
|
|
|
$ivsize = mcrypt_get_iv_size($this->algo,$this->mode);
|
2001-05-06 15:19:42 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$keysize = 8;
|
2001-10-17 20:15:04 +02:00
|
|
|
$ivsize = 8;
|
2001-05-06 15:19:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-20 17:19:55 +01:00
|
|
|
/* Start up mcrypt */
|
|
|
|
$this->td = mcrypt_module_open ($this->algo, '', $this->mode, '');
|
2001-05-06 15:19:42 +02:00
|
|
|
|
|
|
|
$ivsize = mcrypt_enc_get_iv_size($this->td);
|
|
|
|
$keysize = mcrypt_enc_get_key_size($this->td);
|
|
|
|
}
|
|
|
|
|
2001-12-20 17:19:55 +01:00
|
|
|
/* Hack IV to be the correct size */
|
2001-05-06 15:19:42 +02:00
|
|
|
$x = strlen($iv);
|
|
|
|
for ($i = 0; $i < $ivsize; $i++)
|
|
|
|
{
|
|
|
|
$this->iv .= $iv[$i % $x];
|
|
|
|
}
|
|
|
|
|
2001-12-20 17:19:55 +01:00
|
|
|
/* Hack Key to be the correct size */
|
2001-05-06 15:19:42 +02:00
|
|
|
$x = strlen($key);
|
|
|
|
|
|
|
|
for ($i = 0; $i < $keysize; $i++)
|
|
|
|
{
|
|
|
|
$this->key .= $key[$i % $x];
|
|
|
|
}
|
|
|
|
}
|
2001-12-20 17:19:55 +01:00
|
|
|
/* If mcrypt isn't loaded, key and iv are not needed. */
|
2001-05-06 15:19:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function cleanup()
|
|
|
|
{
|
2001-06-16 21:02:31 +02:00
|
|
|
if ($this->enabled)
|
2001-05-06 15:19:42 +02:00
|
|
|
{
|
2001-06-16 21:02:31 +02:00
|
|
|
if ($this->mcrypt_version != 'old')
|
2001-05-06 15:19:42 +02:00
|
|
|
{
|
|
|
|
mcrypt_generic_end ($this->td);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function hex2bin($data)
|
|
|
|
{
|
|
|
|
$len = strlen($data);
|
2001-06-16 21:02:31 +02:00
|
|
|
return pack('H'.$len, $data);
|
2001-05-06 15:19:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function encrypt($data)
|
2001-12-15 00:51:45 +01:00
|
|
|
{
|
2001-12-20 17:19:55 +01:00
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->encrypt() unencrypted data: ---->>>>' . $data . "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
if(gettype($data) == 'array' || gettype($data) == 'object')
|
|
|
|
{
|
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->encrypt() found an "' . gettype($data) . '". Serializing...' . "\n";
|
|
|
|
}
|
|
|
|
$data = serialize($data);
|
|
|
|
$_obj = True;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->encrypt() found "' . gettype($data) . '". No serialization...' . "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable all encryption if the admin didn't set it up */
|
2001-12-15 00:51:45 +01:00
|
|
|
if ($this->enabled)
|
|
|
|
{
|
2001-12-20 17:19:55 +01:00
|
|
|
if($_obj)
|
|
|
|
{
|
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->encrypt() adding slashes' . "\n";
|
|
|
|
}
|
|
|
|
$data = addslashes($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->encrypt() data: ---->>>>' . $data;
|
|
|
|
}
|
|
|
|
|
2001-12-15 00:51:45 +01:00
|
|
|
switch ($this->mcrypt_version)
|
|
|
|
{
|
|
|
|
case 'old':
|
2001-12-20 17:19:55 +01:00
|
|
|
/* The old code, only works with mcrypt <= 2.2.x */
|
|
|
|
$encrypteddata = mcrypt_cbc($this->algo, $this->key, $data, MCRYPT_ENCRYPT);
|
2001-12-15 00:51:45 +01:00
|
|
|
break;
|
|
|
|
default:
|
2001-12-20 17:19:55 +01:00
|
|
|
/* Handle 2.4 and newer API */
|
2001-12-15 00:51:45 +01:00
|
|
|
mcrypt_generic_init ($this->td, $this->key, $this->iv);
|
|
|
|
$encrypteddata = mcrypt_generic($this->td, $data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$encrypteddata = bin2hex($encrypteddata);
|
2001-12-20 17:19:55 +01:00
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->encrypt() crypted data: ---->>>>' . $encrypteddata;
|
|
|
|
}
|
2001-12-15 00:51:45 +01:00
|
|
|
return $encrypteddata;
|
|
|
|
}
|
|
|
|
else
|
2001-12-20 17:19:55 +01:00
|
|
|
{
|
|
|
|
/* No mcrypt == insecure ! */
|
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->encrypt() crypted data: ---->>>>' . $data;
|
|
|
|
}
|
2001-12-15 00:51:45 +01:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function decrypt($encrypteddata)
|
|
|
|
{
|
2001-12-20 17:19:55 +01:00
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->decrypt() crypted data: ---->>>>' . $encrypteddata;
|
|
|
|
}
|
|
|
|
/* Disable all encryption if the admin didn't set it up */
|
2001-12-15 00:51:45 +01:00
|
|
|
if ($this->enabled)
|
|
|
|
{
|
|
|
|
$data = $this->hex2bin($encrypteddata);
|
|
|
|
switch ($this->mcrypt_version)
|
|
|
|
{
|
|
|
|
case 'old':
|
2001-12-20 17:19:55 +01:00
|
|
|
/* The old code, only works with mcrypt <= 2.2.x */
|
|
|
|
$data = mcrypt_cbc($this->algo, $this->key, $data, MCRYPT_DECRYPT);
|
2001-12-15 00:51:45 +01:00
|
|
|
break;
|
|
|
|
default:
|
2001-12-20 17:19:55 +01:00
|
|
|
/* Handle 2.4 and newer API */
|
2001-12-15 00:51:45 +01:00
|
|
|
mcrypt_generic_init ($this->td, $this->key, $this->iv);
|
|
|
|
$data = mdecrypt_generic($this->td, $data);
|
|
|
|
break;
|
|
|
|
}
|
2001-12-20 17:19:55 +01:00
|
|
|
|
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->decrypt() decrypted data: ---->>>>' . $data;
|
|
|
|
}
|
|
|
|
$test = unserialize(stripslashes($data));
|
|
|
|
if($test)
|
|
|
|
{
|
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->decrypt() stripping slashes' . "\n";
|
|
|
|
}
|
|
|
|
$data = stripslashes($data);
|
|
|
|
}
|
|
|
|
unset($test);
|
|
|
|
|
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->decrypt() data: ---->>>>' . $data . "\n";
|
|
|
|
}
|
2001-12-15 00:51:45 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-20 17:19:55 +01:00
|
|
|
/* No mcrypt == insecure ! */
|
2001-12-15 00:51:45 +01:00
|
|
|
$data = $encrypteddata;
|
|
|
|
}
|
2001-12-20 17:19:55 +01:00
|
|
|
|
|
|
|
$newdata = unserialize($data);
|
|
|
|
if($newdata)
|
2001-12-15 00:51:45 +01:00
|
|
|
{
|
2001-12-20 17:19:55 +01:00
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->decrypt() found serialized "' . gettype($newdata) . '". Unserializing...' . "\n";
|
|
|
|
echo '<br>' . time() . ' crypto->decrypt() returning: '; _debug_array($newdata);
|
|
|
|
}
|
|
|
|
return $newdata;
|
2001-12-15 00:51:45 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-20 17:19:55 +01:00
|
|
|
if($this->debug)
|
|
|
|
{
|
|
|
|
echo '<br>' . time() . ' crypto->decrypt() found UNserialized "' . gettype($data) . '". No unserialization...' . "\n";
|
|
|
|
echo '<br>' . time() . ' crypto->decrypt() returning: ' . $data;
|
|
|
|
}
|
2001-12-15 00:51:45 +01:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function encrypt_mail_pass($data)
|
2001-05-06 15:19:42 +02:00
|
|
|
{
|
|
|
|
// Disable all encryption if the admin didn't set it up
|
2001-06-16 21:02:31 +02:00
|
|
|
if ($this->enabled)
|
2001-05-06 15:19:42 +02:00
|
|
|
{
|
2001-12-14 22:38:40 +01:00
|
|
|
// ONLY manipulate data if we are going to encrypt it
|
|
|
|
// question: why do we sreialize and add slashes before encrypting?? (ed: Angles)
|
|
|
|
$data = serialize($data);
|
|
|
|
$data = addslashes($data);
|
2001-06-16 21:02:31 +02:00
|
|
|
switch ($this->mcrypt_version)
|
2001-05-06 15:19:42 +02:00
|
|
|
{
|
|
|
|
// The old code, only works with mcrypt <= 2.2.x
|
|
|
|
case 'old':
|
|
|
|
{
|
|
|
|
$encrypteddata = mcrypt_cbc(MCRYPT_TripleDES, $this->key, $data, MCRYPT_ENCRYPT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{ // Handle 2.4 and newer API
|
2001-06-16 21:02:31 +02:00
|
|
|
mcrypt_generic_init ($this->td, $this->key, $this->iv);
|
2001-05-06 15:19:42 +02:00
|
|
|
$encrypteddata = mcrypt_generic($this->td, $data);
|
2001-06-16 21:02:31 +02:00
|
|
|
break;
|
2001-05-06 15:19:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$encrypteddata = bin2hex($encrypteddata);
|
|
|
|
return $encrypteddata;
|
|
|
|
}
|
|
|
|
else
|
2001-12-14 22:38:40 +01:00
|
|
|
{
|
|
|
|
// No mcrypt == insecure !
|
|
|
|
// Data should be returned *unmolested* if encryption is not enabled
|
2001-05-06 15:19:42 +02:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-15 00:51:45 +01:00
|
|
|
function decrypt_mail_pass($encrypteddata)
|
2001-05-06 15:19:42 +02:00
|
|
|
{
|
|
|
|
// Disable all encryption if the admin didn't set it up
|
2001-06-16 21:02:31 +02:00
|
|
|
if ($this->enabled)
|
2001-05-06 15:19:42 +02:00
|
|
|
{
|
|
|
|
$data = $this->hex2bin($encrypteddata);
|
2001-06-16 21:02:31 +02:00
|
|
|
switch ($this->mcrypt_version)
|
2001-05-06 15:19:42 +02:00
|
|
|
{
|
|
|
|
// The old code, only works with mcrypt <= 2.2.x
|
|
|
|
case 'old':
|
|
|
|
$data = mcrypt_cbc(MCRYPT_TripleDES, $this->key, $data, MCRYPT_DECRYPT);
|
|
|
|
break;
|
2001-06-16 21:02:31 +02:00
|
|
|
// Handle 2.4 and newer API
|
2001-05-06 15:19:42 +02:00
|
|
|
default:
|
2001-06-16 21:02:31 +02:00
|
|
|
mcrypt_generic_init ($this->td, $this->key, $this->iv);
|
2001-05-06 15:19:42 +02:00
|
|
|
$data = mdecrypt_generic($this->td, $data);
|
2001-06-16 21:02:31 +02:00
|
|
|
break;
|
2001-05-06 15:19:42 +02:00
|
|
|
}
|
2001-12-14 22:38:40 +01:00
|
|
|
// hey -- since the encrypt() function calls serialize and then addslashes,
|
|
|
|
// we should always do the reverse -- correct? (ed: Del)
|
|
|
|
$data = stripslashes($data);
|
|
|
|
$data = unserialize($data);
|
|
|
|
// question: was it necessary to serialize and addslashes *before* encryption in the first place? (ed: Angles)
|
2001-06-16 21:02:31 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-14 22:38:40 +01:00
|
|
|
// Data should be returned *unmolested* if encryption is not enabled
|
|
|
|
return $data;
|
2001-06-16 21:02:31 +02:00
|
|
|
}
|
2001-12-14 22:38:40 +01:00
|
|
|
/*
|
|
|
|
// this is apparently intended to allow encryption of objects
|
|
|
|
// at this point Dec 14, 2001, we simply need to handle strings correctly
|
|
|
|
// which was broken previously (ed: Angles)
|
2001-06-16 21:02:31 +02:00
|
|
|
if(!strpos(' '.$data,'O:8:"stdClass"'))
|
|
|
|
{
|
2001-05-06 15:19:42 +02:00
|
|
|
return unserialize($data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-09-21 07:47:32 +02:00
|
|
|
$data = stripslashes($data);
|
2001-06-16 21:02:31 +02:00
|
|
|
return $data;
|
2001-05-06 15:19:42 +02:00
|
|
|
}
|
2001-12-14 22:38:40 +01:00
|
|
|
*/
|
2001-05-06 15:19:42 +02:00
|
|
|
}
|
2001-10-17 20:15:04 +02:00
|
|
|
} // class crypto
|
2001-05-06 15:19:42 +02:00
|
|
|
?>
|