Hello again all. In this post I thought I would include something many people ask me. RC4 encryption in different languages. Below is the code for RC4 encryption in VB.NET, C#, and c++ (written in visual c++) C# using System; using System.Collections.Generic; using System.IO; namespace RC4Project { public class Rc4 { private byte[] _S; int [...]