ARCFourCipherSuitePlugin.ARCFourCryptoTransform.ARCFourCryptoTransform C# (CSharp) Method

ARCFourCryptoTransform() public method

public ARCFourCryptoTransform ( byte key ) : System
key byte
return System
        public ARCFourCryptoTransform(byte[] key)
        {
            _key = (byte[]) key.Clone();
            _permutation = new byte[256];
            Reset();
        }