@Gilmichel wrote:
Hello,
Using MCRYPT_RIJNDAEL_256 in php 5.6 you may encounter an issue with key length.
To resolve it add ./0 to your key:
Exemple:
$key = "123456";
Add :
$key = $key."/0";
Gilbert
Posts: 2
Participants: 2
@Gilmichel wrote:
Hello,
Using MCRYPT_RIJNDAEL_256 in php 5.6 you may encounter an issue with key length.
To resolve it add ./0 to your key:
Exemple:
$key = "123456";
Add :
$key = $key."/0";
Gilbert
Posts: 2
Participants: 2