Files
AdamuSw/src/Network/IPipelinedDecryptor.cs
2026-07-14 19:00:35 +03:00

18 lines
502 B
C#

// <copyright file="IPipelinedDecryptor.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.Network;
using System.IO.Pipelines;
/// <summary>
/// Interface for a pipelined decryptor.
/// </summary>
public interface IPipelinedDecryptor
{
/// <summary>
/// Gets the reader of the decryptor which contains the decrypted data.
/// </summary>
PipeReader Reader { get; }
}