Rijndael 256 Encrypt/decrypt between c# and php?

32,582

If you want to use Rijndael256 in your C# application you have to set the BlockSize to 256.

RijndaelManaged rj = new RijndaelManaged();
rj.BlockSize = 256;

And then your iv has to be 256 bits long as well.
see SymmetricAlgorithm.BlockSize Property


Or the other way round: Currently your C# application uses Rijndael128 and so must your php script.

<?php
class Foo {
  protected $mcrypt_cipher = MCRYPT_RIJNDAEL_128;
  protected $mcrypt_mode = MCRYPT_MODE_CBC;

  public function decrypt($key, $iv, $encrypted)
  {
    $iv_utf = mb_convert_encoding($iv, 'UTF-8');
    return mcrypt_decrypt($this->mcrypt_cipher, $key, base64_decode($encrypted), $this->mcrypt_mode, $iv_utf);
  }
}



$encrypted = "UmzUCnAzThH0nMkIuMisqg==";
$key = "qwertyuiopasdfghjklzxcvbnmqwerty";
$iv = "1234567890123456";

$foo = new Foo;
echo $foo->decrypt($key, $iv, $encrypted);

prints hello world

Share:
32,582
arbme
Author by

arbme

Updated on September 10, 2020

Comments

  • arbme
    arbme over 3 years

    UPDATED

    I have made the changes to the C# code so it uses a block size of 256. but now the hello world looks like this http://pastebin.com/5sXhMV11 and I cant figure out what I should use with rtrim() to get ride of the mess at the end.

    Also when you say the IV should be random, by this do you mean don't use the same IV more then once or is the way I have coded it wrong?

    Thanks again!

    Hi,

    I'm trying to decrypt a string with PHP that was encrypted in C#. I can't seem to get PHP to decrypt it using mcrypt and could do with some help please. I get the following error with php so I am guessing I'm not setting the IV correctly.

    Error: The IV parameter must be as long as the blocksize

    Both functions use the same cipher, key, IV and set to CBC mode:

    encrypted text from c# = UmzUCnAzThH0nMkIuMisqg==
    key 32 long = qwertyuiopasdfghjklzxcvbnmqwerty
    iv 16 long = 1234567890123456

    C#

        public static string EncryptString(string message, string KeyString, string IVString)
        {
            byte[] Key = ASCIIEncoding.UTF8.GetBytes(KeyString);
            byte[] IV = ASCIIEncoding.UTF8.GetBytes(IVString);
    
            string encrypted = null;
            RijndaelManaged rj = new RijndaelManaged();
            rj.Key = Key;
            rj.IV = IV;
            rj.Mode = CipherMode.CBC;
    
            try
            {
                MemoryStream ms = new MemoryStream();
    
                using (CryptoStream cs = new CryptoStream(ms, rj.CreateEncryptor(Key, IV), CryptoStreamMode.Write))
                {
                    using (StreamWriter sw = new StreamWriter(cs))
                    {
                        sw.Write(message);
                        sw.Close();
                    }
                    cs.Close();
                }
                byte[] encoded = ms.ToArray();
                encrypted = Convert.ToBase64String(encoded);
    
                ms.Close();
            }
            catch (CryptographicException e)
            {
                Console.WriteLine("A Cryptographic error occurred: {0}", e.Message);
                return null;
            }
            catch (UnauthorizedAccessException e)
            {
                Console.WriteLine("A file error occurred: {0}", e.Message);
                return null;
            }
            catch (Exception e)
            {
                Console.WriteLine("An error occurred: {0}", e.Message);
            }
            finally
            {
                rj.Clear();
            }
    
            return encrypted;
        }
    

    PHP

    var $mcrypt_cipher = MCRYPT_RIJNDAEL_256;
    var $mcrypt_mode = MCRYPT_MODE_CBC;
    
    function decrypt($key, $iv, $encrypted)
    {
        $encrypted = base64_decode($encrypted);
    
        $decrypted = rtrim(mcrypt_decrypt($this->mcrypt_cipher, $key, $encrypted, $this->mcrypt_mode, $iv), "\0");;
        return $decrypted;
    }
    

    Thanks

  • quantumSoup
    quantumSoup almost 14 years
    I know it's not your fault, but the IV should really be randomized. It defeats the purpose of having one if it's not.
  • VolkerK
    VolkerK almost 14 years
  • hsuk
    hsuk over 10 years
    Can you see this please ? stackoverflow.com/questions/18908613/…
  • Digital Human
    Digital Human over 6 years
    True but its an example ;)