okay guys i' am a step closer :
new problem de encrypth and decrypth returns not de the same value
i add the following lines to my the sql.php fiel ( located ../ispcp/gui/include)
Code:
$password_cx="1234bla7";
$password_en=encrypt_db_password($password_cx);
echo "Passwort en:\" $password_en \"<br>";
$password_de=decrypt_db_password($password_en);
echo "Passwort de:\" $password_de \"<br>";
and the output is :
Passwort en:" w+VvihwpIvEMvQOXxu3ETw== "
Passwort de:" 1234bla€ "
is this a problem or do i need jusst another component ?
sorry this is all a bit confusing for me :-(
okay i am step closer ..
it looks like the script has allways a Problem with the sign on 8 position, because on the decodeing always the 8 postion is bad translated.
01234567890
Passwort en:" ctsbH5XBP8LHVEwDMmL8uQ== "
Passwort de:" 0123456€890 "
good01234567890
Passwort en:" +5e86IBynDN2TSAVvWzEuA== "
Passwort de:" good012„4567890 "
1234567
Passwort en:" JJWr5Bwjc4Y= "
Passwort de:" 1234567 "
is this a know issue ?