<PackageReference Include="NETStandard.Library" Version="2.0.1" />

System.Security.Cryptography.ICryptoTransform

public interface ICryptoTransform : IDisposable
namespace System.Security.Cryptography { public interface ICryptoTransform : IDisposable { bool CanReuseTransform { get; } bool CanTransformMultipleBlocks { get; } int InputBlockSize { get; } int OutputBlockSize { get; } int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset); byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount); } }