
gexas keksas - 2015-01-26 22:24:30 -
In reply to message 1 from Jeff Beethoven
Hi,
after:
function encrypt($string) {
$iv = $this->_generate_iv();
add:
$iv = strtr($iv, '+', 'h');
This replace "+" sign to "h" letter (You can use any letter/digit).
Hope this help's
Bye.