AaltoTLS.PluginInterface.BulkCipherAlgorithmNull.CreateDecryptor C# (CSharp) Method

CreateDecryptor() public method

public CreateDecryptor ( byte rgbKey, byte rgbIV, byte additional ) : ICryptoTransform
rgbKey byte
rgbIV byte
additional byte
return ICryptoTransform
        public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV, byte[] additional)
        {
            return new NullCryptoTransform();
        }