Fix: Private member variable must be prefixed with an underscore
This commit is contained in:
parent
bf9c7c8ef9
commit
5ac292f9ae
@ -28,8 +28,8 @@
|
|||||||
*/
|
*/
|
||||||
class DolCookie
|
class DolCookie
|
||||||
{
|
{
|
||||||
private $myKey;
|
private $_myKey;
|
||||||
private $iv;
|
private $_iv;
|
||||||
|
|
||||||
var $myCookie;
|
var $myCookie;
|
||||||
var $myValue;
|
var $myValue;
|
||||||
@ -46,8 +46,8 @@ class DolCookie
|
|||||||
*/
|
*/
|
||||||
function __construct($key = '')
|
function __construct($key = '')
|
||||||
{
|
{
|
||||||
$this->myKey = hash('sha256', $key, TRUE);
|
$this->_myKey = hash('sha256', $key, TRUE);
|
||||||
$this->iv = md5(md5($this->myKey));
|
$this->_iv = md5(md5($this->_myKey));
|
||||||
$this->cookie = "";
|
$this->cookie = "";
|
||||||
$this->myCookie = "";
|
$this->myCookie = "";
|
||||||
$this->myValue = "";
|
$this->myValue = "";
|
||||||
@ -61,10 +61,10 @@ class DolCookie
|
|||||||
*/
|
*/
|
||||||
private function cryptCookie()
|
private function cryptCookie()
|
||||||
{
|
{
|
||||||
if (!empty($this->myKey) && !empty($this->iv))
|
if (!empty($this->_myKey) && !empty($this->_iv))
|
||||||
{
|
{
|
||||||
$valuecrypt = base64_encode($this->myValue);
|
$valuecrypt = base64_encode($this->myValue);
|
||||||
$this->cookie = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->myKey, $valuecrypt, MCRYPT_MODE_CBC, $this->iv));
|
$this->cookie = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->_myKey, $valuecrypt, MCRYPT_MODE_CBC, $this->_iv));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -81,10 +81,10 @@ class DolCookie
|
|||||||
*/
|
*/
|
||||||
private function decryptCookie()
|
private function decryptCookie()
|
||||||
{
|
{
|
||||||
if (!empty($this->myKey) && !empty($this->iv))
|
if (!empty($this->_myKey) && !empty($this->_iv))
|
||||||
{
|
{
|
||||||
$this->cookie = $_COOKIE[$this->myCookie];
|
$this->cookie = $_COOKIE[$this->myCookie];
|
||||||
$this->myValue = trim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $this->myKey, base64_decode($this->cookie), MCRYPT_MODE_CBC, $this->iv));
|
$this->myValue = trim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $this->_myKey, base64_decode($this->cookie), MCRYPT_MODE_CBC, $this->_iv));
|
||||||
|
|
||||||
return(base64_decode($this->myValue));
|
return(base64_decode($this->myValue));
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user