I have that code for now:
main Php part
$mysql_result = database_exec("select ID, NAME from TABLE1 order by ID");
while($line=mysql_fetch_array($mysql_result))
{
$requete="select count(T2.ID) as nb
from TABLE2 T2,
TABLE3 T3
where T2.COL = ".$var1."
AND T2.COL = T3.COL";
$result=mysql_query($requete);
$ligne_nb=mysql_fetch_array($result);
if($ligne_nb["nb"] != 0)
{
$output[] = $ligne + $ligne_nb;
}
}
print(json_encode($output));
and i would like to 3DES encode the "$output[] = $ligne + $ligne_nb;" line with my encrypt function that I already use in other parts of the code (100% working)
function crypt2($cleartext, $key)
{
$cipher = mcrypt_module_open(MCRYPT_BLOWFISH, '', MCRYPT_MODE_CBC, '');
$key = substr($key, 0, mcrypt_enc_get_key_size($cipher));
$iv = '00000000';
// Padding.
$cleartext_length = strlen($cleartext)%8;
for($i=$cleartext_length; $i<8; $i++)
{
$cleartext .= chr(8-$cleartext_length);
}
$cipherText='';
if (mcrypt_generic_init($cipher, $key, $iv) != -1)
{
// PHP pads with NULL bytes if $cleartext is not a multiple of the block size..
$cipherText = mcrypt_generic($cipher,$cleartext );
mcrypt_generic_deinit($cipher);
}
return base64_encode($cipherText);
}
BUT I obvisouly want to keep the columns names in clear (i use it on the Android side to get the data).
So I just want to code the json DATA, and keep the json structure, just like: COLUMN=ID DATA=_8pNbgq[
I don't know if I am really clear :-) but I've been trying for a while and I just can't get access to the data.
Any help would be appréciated. Thanks.
My java decryption function:
public static String decrypt2Password(byte[] encrypted, String password) throws GeneralSecurityException
{
SecretKeySpec skeySpec = new SecretKeySpec(password.getBytes(), "Blowfish");
Cipher cipher = Cipher.getInstance("Blowfish/CBC/PKCS5Padding");
String iv = "00000000";
IvParameterSpec ivs = new IvParameterSpec(iv.getBytes());
cipher.init(Cipher.DECRYPT_MODE, skeySpec, ivs);
byte[] decrypted = cipher.doFinal(encrypted);
//return decrypted.toString();
return new String(decrypted);
}