I have been trying to implement some encryption between an iPhone app and a PHP web service. It's not working however. It seems like the first half of the text is NOT decrypted while the second half is decrypted just fine. I can't figure out what to do, maybe you can help?
The PHP encryption method is as follows:
function decrypt( $str, $iv ) {
$iv .= "00000000";
$str = base64_decode( $str );
return self::decrypt_data( $str, $iv, self::secret_key );
}
The iPhone stuff that encrypts the text uses a CryptoHelper class like this:
NSString *encrypted = [[CryptoHelper sharedInstance] encryptString:dataString];
The CryptoHelper class can be seen here: http://pastie.org/1267796