views:

284

answers:

2

Hi all,

I'm currently porting a peace of code written in .NET 3.5 to 2.0. At some point in the code (heavy load) the AesManaged class is being used, are there any performance gains from this implementation compared to RijndaelManaged, and should there be any risk when changing from AesManaged to RijndaelManaged concerning heavy load?

greetings, Tim

A: 

ok, it seems that the AesManaged class wraps the RijndaelManaged class, so it should be oké...

Tim Mahy
A: 

Actually there is one very subtle difference: Block size.

Rijndael supports block sizes of 128, 192, 256 bits. AES supports only 128 bit block sizes.

Michael Howard-MSFT