- March 10, 2006
- 4,434
- 1,897
- Moderator
- #21
@ltfearme, AES is a well established method, and most CPUs have hardware support for it as well.
Easy to use C# code for a two-way encrypted storage of password via AES, that also does a base64 encoding for safe storage as-is in dbase/xml/etc -- http://www.aspsnippets.com/Articles/Encrypt-and-Decrypt-Username-or-Password-stored-in-database-in-ASPNet-using-C-and-VBNet.aspx
Be sure to generate a unique key for each user, as otherwise you might as well just store the Trakt password in plain text.
Easy to use C# code for a two-way encrypted storage of password via AES, that also does a base64 encoding for safe storage as-is in dbase/xml/etc -- http://www.aspsnippets.com/Articles/Encrypt-and-Decrypt-Username-or-Password-stored-in-database-in-ASPNet-using-C-and-VBNet.aspx
Be sure to generate a unique key for each user, as otherwise you might as well just store the Trakt password in plain text.