views:

1357

answers:

1

Hi,

For new RijndaelManaged(), the documentation says it supports keys of 128 bits and up to 256 bits.

When you instantiate new RijndaelManaged(), it creates the Key and IV for you.

What size does it default to, 128 bits?

+2  A: 

The default key size is 256 bits, while the default blocksize is 128 bits.

leppie
thanks, I just outputed it and it is 32 bytes = 256 bits.