AaltoTLS.PluginInterface.BulkCipherAlgorithm.CreateEncryptor C# (CSharp) Method

CreateEncryptor() public method

public CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
return ICryptoTransform
        public ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV)
        {
            return CreateEncryptor(rgbKey, rgbIV, new byte[0]);
        }

Same methods

BulkCipherAlgorithm::CreateEncryptor ( byte rgbKey, byte rgbIV, byte additional ) : ICryptoTransform