attempt fix in class crypto, data manipulation in encrypt and decrypt should mirror each other

This commit is contained in:
angles 2001-12-14 21:38:40 +00:00
parent 80162794d8
commit d4b52f9fcb

View File

@ -41,7 +41,7 @@
$this->mcrypt_version = $GLOBALS['phpgw_info']['server']['versions']['mcrypt']; $this->mcrypt_version = $GLOBALS['phpgw_info']['server']['versions']['mcrypt'];
if ($this->mcrypt_version == 'old') if ($this->mcrypt_version == 'old')
{ {
$this->td = false; $this->td = False;
if (phpversion() > '4.0.2pl1') if (phpversion() > '4.0.2pl1')
{ {
$keysize = mcrypt_get_key_size(MCRYPT_TRIPLEDES); $keysize = mcrypt_get_key_size(MCRYPT_TRIPLEDES);
@ -99,12 +99,13 @@
function encrypt($data) function encrypt($data)
{ {
$data = serialize($data);
$data = addslashes($data);
// Disable all encryption if the admin didn't set it up // Disable all encryption if the admin didn't set it up
if ($this->enabled) if ($this->enabled)
{ {
// 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);
switch ($this->mcrypt_version) switch ($this->mcrypt_version)
{ {
// The old code, only works with mcrypt <= 2.2.x // The old code, only works with mcrypt <= 2.2.x
@ -124,7 +125,9 @@
return $encrypteddata; return $encrypteddata;
} }
else else
{ // No mcrypt == insecure ! {
// No mcrypt == insecure !
// Data should be returned *unmolested* if encryption is not enabled
return $data; return $data;
} }
} }
@ -147,12 +150,21 @@
$data = mdecrypt_generic($this->td, $data); $data = mdecrypt_generic($this->td, $data);
break; break;
} }
// 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)
} }
else else
{ {
$data = $encrypteddata; // Data should be returned *unmolested* if encryption is not enabled
return $data;
} }
/*
// 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)
if(!strpos(' '.$data,'O:8:"stdClass"')) if(!strpos(' '.$data,'O:8:"stdClass"'))
{ {
return unserialize($data); return unserialize($data);
@ -162,6 +174,7 @@
$data = stripslashes($data); $data = stripslashes($data);
return $data; return $data;
} }
*/
} }
} // class crypto } // class crypto
?> ?>