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

RandomValues() public method

public RandomValues ( List result, int offset, int length ) : void
result List
offset int
length int
return void
        public void RandomValues(List<byte> result, int offset, int length)
        {
            StirIfNeeded ();
            while (length-- != 0) {
                count--;
                StirIfNeeded ();
                result [offset + length] = GetByte ();
            }
        }