I am using codeigniter 3.1.6. I am using encryption class and I loaded it through config/autoload.
I have set the encryption key from
I am encrypting and decrypting using
The problem is that for 2 instances I succeed and the next one the form crash as you will see on the image attached.
Assistance is highly needed.
decryption.jpg (Size: 48.51 KB / Downloads: 6)
success.jpg (Size: 34.39 KB / Downloads: 4)
PHP Code:
$autoload['libraries'] = array('database', 'session', 'xmlrpc','form_validation','encryption');
I have set the encryption key from
PHP Code:
echo bin2hex($this->encryption->create_key(16));
PHP Code:
$config['encryption_key'] = hex2bin('ccf8ce9386eb83d67a3a334748aca064');
PHP Code:
$this->encryption->encrypt($data);
$this->encryption->decrypt($encrypteddata);
The problem is that for 2 instances I succeed and the next one the form crash as you will see on the image attached.
Assistance is highly needed.
decryption.jpg (Size: 48.51 KB / Downloads: 6)
success.jpg (Size: 34.39 KB / Downloads: 4)