When creating the instance, the KEY and IV are generated for me.

 RijndaelManaged myRijndael = new RijndaelManaged();

How can I store the Key in my database or web.config file?
And in what format?

Because I will have to load the key when trying to decrypt the encrypted string obviously.

thanks for your help, a little lost on this topic.

link|improve this question
feedback

1 Answer

When storing binary as text (regardless if to a text file or a database field), the Base64 encoding is the way to go.

RijndaelManaged myRijndael = new RijndaelManaged();

// to Base64
string keyb64 = Convert.ToBase64String(myRijndael.Key);

// reverse
myRijndael.Key = Convert.FromBase64String(keyb64);

The Base64 string is safe to store anywhere you like.

link|improve this answer
thanks man, I just figured it out myself, but still need some 'confirmation'. cheers! – Brian Leahy Nov 11 '08 at 15:52
btw, why base64? – Brian Leahy Nov 11 '08 at 15:53
"Why use it?" or "Why is it called like that?"? – Tomalak Nov 11 '08 at 15:58
1  
As to "Why use it?": It encodes binary bytes to a limited set of safe characters (out of the ASCII range). These characters do not get tampered with during mail transfer, are not affected by code page issues and Base64 is an agreed standard widely supported and easy to implement. – Tomalak Nov 11 '08 at 16:02
As to "Why is it called like that?": Because it is based on an alphabet of 64 characters. – Tomalak Nov 11 '08 at 16:03
show 4 more comments
feedback

Your Answer

 
or
required, but never shown