I'm trying to decrypt it in Xcode with AES-Crypt-Objc. I'have tried really everything..different libariers and so on..
..anyhting goes wrong, but I don't know what pls. help...
UPDATE (another opinion) Now i try this:
function mc_encrypt($encrypt, $key = "12345678901234567890123456789012")
{
$encrypt = "Affe";
$iv2 = '';
for($i=0;$i<16;$i++){ $iv2 .= "\0"; }
$ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, ($encrypt), MCRYPT_MODE_CBC,$iv2);
$encode= base64_encode($ciphertext);
return $encode;
}
in Obj-C I use also the same framework (still IV is now nil)
...still nothing works...
AND some Objc-C Code: note: request responseString is the string comes from above.
NSString *key = @"12345678901234561234567890123456";
NSLog(@"decrypted: %@",[AESCrypt decrypt:[request responseString] password:key]);
output is sometimes nothing, sometimes null.