The string "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz012345678912" when base64-decoded yields 48 bytes (384 bits). RijndaelManaged supports 128, 192 and 256 bit keys.
A valid 128-bit key is new byte[]{ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F }
or if you need to get it from base64 : Convert.FromBase64String("AAECAwQFBgcICQoLDA0ODw==")
.
The default blocksize is 128 bits, so the same byte-array will work as the IV.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…