NetWrok.HTTP.RC4.Arc4Stream.Arc4Stream C# (CSharp) Method

Arc4Stream() public method

public Arc4Stream ( ) : System.Collections.Generic
return System.Collections.Generic
            public Arc4Stream()
            {
                for (int n = 0; n <= byte.MaxValue; n++) {
                    s [n] = (byte)n;
                }
                i = 0;
                j = 0;
            }
RC4.Arc4Stream