[C#] Simple RC2 Encryption/Decryption [Intermediate] - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19) +---- Thread: [C#] Simple RC2 Encryption/Decryption [Intermediate] (/showthread.php?tid=11672) |
[C#] Simple RC2 Encryption/Decryption [Intermediate] - Mike - 08-31-2010 Wrote this in about 20 minutes. Give credit if you use it. Imports: Code: using System.Security.Cryptography; Code: Code: static string strRC2Encryption(string strInput, string strKey, string strIV) Usage: Code: string s = strRC2Encryption("Mike", "AAAAAAAA", "AAAAAAAA"); RE: [C#] Simple RC2 Encryption/Decryption [Intermediate] - NathanE - 12-14-2010 very nice snippet mate,keep up the good work! RE: [C#] Simple RC2 Encryption/Decryption [Intermediate] - Saint Michael - 12-21-2010 Indeed, post some more soon. RE: [C#] Simple RC2 Encryption/Decryption [Intermediate] - ZxPwn420 - 12-21-2010 Thanks for this |