<PackageReference Include="BouncyCastle.Cryptography" Version="2.6.0" />

ITranslator

public interface ITranslator
Translator interface.
namespace Org.BouncyCastle.Utilities.Encoders { public interface ITranslator { int GetEncodedBlockSize(); int Encode(byte[] input, int inOff, int length, byte[] outBytes, int outOff); int GetDecodedBlockSize(); int Decode(byte[] input, int inOff, int length, byte[] outBytes, int outOff); } }