On 9/7/07, Symbian <mail5205772@xxxxxxxxxxxx> wrote: > > Hi, > > I'm not sure if this is the right place to post this, I have some decryption > routines that use mcrypt that I need to decrypt in .NET, does anyone know > how why I cant get this to work? I've done it in reverse - something encrypted in .NET and then decrypted in PHP these were my notes... To get .NET and PHP to play friendly with two-way encryption, you need to make sure some things happen in both: In .NET: 1) You need to set the Padding to PaddingMode.Zeros, i.e.: Rijndael alg = Rijndael.Create(); alg.Padding = PaddingMode.Zeros; 2) You also need to make sure to use System.Text.Encoding.ASCII or System.Text.Encoding.UTF8; System.Text.Encoding.Unicode will *not* work (perhaps in PHP6 this might be possible.) 3) Need to make sure the IV and key are the same as defined in PHP. In PHP: 1) You need the mcrypt extension installed. 2) Need to make sure the IV and key are the same as defined in .NET. 3) You can issue this single line of code to decrypt: mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, $encrypted_text, "cbc", $iv); Notes: 1) By default .NET uses a 128-bit cipher in CBC mode when you initialize Rijndael. That might not be common knowledge. 2) If you're sending this data via a URL or cookie or something else, be sure to base64 encode on the .NET side, and base64_decode() the data on the PHP side. below i would say that: a) you need to make sure the IV is the same. right now it looks like you are creating a random one in PHP and a different one in .NET. that would be my first thing to check. b) not sure if ECB vs. CBC is any different; i know CBC will work though. hope that helps some. it took some debugging for us, and it didn't help that our .NET guy created the IV using low and high ascii character codes that I had to reproduce in PHP for the IV and the key... I would get different sizes as well, but once the stars aligned it worked perfectly. Be sure that any base64 encoding/decoding or anything like that is done in the proper order (typically start out with no encoding, get it to work, then add on encoding and decoding on both ends properly, etc.) good luck :) > ---- PHP > $mcryptSize = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB); > $mcryptIV = mcrypt_create_iv($mcryptSize, MCRYPT_RAND); > $mcryptData = pack("H*", $data); > $decryptData = > mcrypt_decrypt(MCRYPT_RIJNDAEL_128,$key,$mcryptData,MCRYPT_MODE_ECB,$mcryptIV); > --------- > > $decryptData should be 2048 in size. Here's my C# converted bits: > ------------- C# > > RijndaelManaged rj = new RijndaelManaged(); > rj.Mode = CipherMode.ECB; > rj.Key = ASCIIEncoding.ASCII.GetBytes(KEY); > rj.KeySize = 128; > rj.GenerateIV(); > rj.Padding = PaddingMode.Zeros; > ICryptoTransform trans = rj.CreateDecryptor(rj.Key, rj.IV); > byte[] Buffer = Convert.FromBase64String(DATA); > string dataD = > ASCIIEncoding.ASCII.GetString(trans.TransformFinalBlock(Buffer,0, > Buffer.Length)); > ------------- > > However the length is 3017 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php