La clave especificada no es un tamaño válido para este algoritmo

Tengo con este código:

RijndaelManaged rijndaelCipher = new RijndaelManaged();

            // Set key and IV
            rijndaelCipher.Key = Convert.FromBase64String("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz012345678912");
            rijndaelCipher.IV = Convert.FromBase64String("1234567890123456789012345678901234567890123456789012345678901234");

Me dan tiros:

Specified key is not a valid size for this algorithm.

Specified initialization vector (IV) does not match the block size for this algorithm.

¿Qué hay de malo con estas cuerdas? ¿Puedo contar con algunos ejemplos de cadenas de usted?

Respuestas a la pregunta(5)

Su respuesta a la pregunta