Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
}
share|improve this question
i don't see how that's possible unless you unmarshal the sql result or perform the cyphering in the sql itself (which i don't see how you can do). Also, i don't see what's wrong with cyphering the whole stuff ? – njzk2 Nov 7 '12 at 10:37
ok, so how update my CRYPT2 function to encrypt an array? and the same thing for the decrypt Java side (code below)? – Steph68 Nov 7 '12 at 10:48
that should work. you may need to specify an encoding when creating the string after the decyphering – njzk2 Nov 7 '12 at 13:50
ok but how to use my Php CRYPT2 with an array, and not just the data strings? I can't just make a simple "print(crypte2(json_encode($output)), $password);" – Steph68 Nov 7 '12 at 15:20
why not ? you would decypher before parsing the json on the other side – njzk2 Nov 7 '12 at 16:12
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.