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