[VB.NET] RC4 Encryption Module - 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: [VB.NET] RC4 Encryption Module (/showthread.php?tid=5637) |
[VB.NET] RC4 Encryption Module - BlackSpider - 04-06-2010 Hi everyone, this is an example of RC4 Encryption by Oddworth. Enjoy Source Code: On top of source code add our imortant: Code: Imports System.Text Then anywhere else except in Form1, Button1 or any kind of Sub post function: Code: Public Shared Function rc4(ByVal message As String, ByVal password As String) As String How to use source: Code: rc4("Text","password") RE: [VB.NET] RC4 Encryption Module - iCrackz - 04-06-2010 Thanks for this. RE: [VB.NET] RC4 Encryption Module - RaZoR03 - 04-18-2010 Awesome tut,Thanks |