vote up 2 vote down star

Hi,

I am using AES 256 to encrypt/decrypt some plain text. But the algorith uses only PKCS7 for padding, but I need to use PKCS5 to make it compitable to other platforms. How can I acheive this?

My source code is:

public string Encrypt(byte[] PlainTextBytes, byte[] KeyBytes, string InitialVector)
{
byte[] InitialVectorBytes = Encoding.UTF8.GetBytes(InitialVector);
RijndaelManaged SymmetricKey = new RijndaelManaged();
SymmetricKey.Mode = CipherMode.CBC;
SymmetricKey.Padding = PaddingMode.PKCS7;
ICryptoTransform Encryptor = SymmetricKey.CreateEncryptor(KeyBytes, InitialVectorBytes);
MemoryStream MemStream = new MemoryStream();
CryptoStream CryptoStream = new CryptoStream(MemStream, Encryptor, CryptoStreamMode.Write);
CryptoStream.Write(PlainTextBytes, 0, PlainTextBytes.Length);
CryptoStream.FlushFinalBlock();
byte[] CipherTextBytes = MemStream.ToArray();
MemStream.Close();
CryptoStream.Close();
return ByteToHexConversion(CipherTextBytes);
}
flag

PKCS#5 and PKCS#7 use the same padding so you don't need to change anything – jitter Jun 29 at 10:10

2 Answers

vote up 3 vote down check

PKCS#5-padding and PKCS#7-padding are different names for the same algorithm. It is also sometimes called PKCS-padding or RFC3852-padding.

link|flag
Thanks a lot. But can you help me with the source of the problem, this is part of a huge enterpise implementation, which is using AES 256 for encryption of data. The hex output of the encryption in Unix (Oracle) and Windows is giving different result, even though we are using the same key and iv. – Bhaskar Jun 29 at 11:09
Give us an example key, iv and inputdata as well as the output from your two systems. That might help troubleshooting your problem. You might also want to include the code that is used on your Unix system. – Rasmus Faber Jun 29 at 11:33
Unix (Oracle): Key (hex) = "3D39DDFC9FEAD0C32333F744AFCC78157A06695C55FA2C206D96743849DC14D8 Input (plain) = "012345678901234" IV = "0123456789123456" Output (hex) = "00984BBED076541E051A239C02D97117" Windows: Key (hex) = "3D39DDFC9FEAD0C32333F744AFCC78157A06695C55FA2C206D96743849DC14D8 Input (plain) = "012345678901234" IV = "0123456789123456" Output (hex) = "127187969E6F08996662D62854121AF5" – Bhaskar Jun 29 at 12:52
1  
Your Unix(Oracle) values are encrypted using ECB-mode (basically ignoring the IV). Your Windows values are correct. – Rasmus Faber Jun 29 at 13:45
Can i do my encryption in .NET by ignoring the IV (ECB mode). I guess, I will have to go with the Unix guys. – Bhaskar Jun 30 at 7:35
show 2 more comments
vote up 1 vote down

You dont?

Try reading this or this

link|flag
Thanks a lot. But can you help me with the source of the problem, this is part of a huge enterpise implementation, which is using AES 256 for encryption of data. The hex output of the encryption in Unix (Oracle) and Windows is giving different result, even though we are using the same key and iv. – Bhaskar Jun 29 at 11:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.