System.Security.Cryptography.CryptoStream
namespace System.Security.Cryptography
{
public class CryptoStream : Stream, IDisposable
{
public bool HasFlushedFinalBlock { get; }
public CryptoStream(Stream stream, ICryptoTransform transform, CryptoStreamMode mode);
public void Clear();
public void FlushFinalBlock();
}
}