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

Base64Encoder

public class Base64Encoder : IEncoder
protected readonly byte[] decodingTable

protected readonly byte[] encodingTable

protected byte padding

public Base64Encoder()

public int Decode(byte[] data, int off, int length, Stream outStream)

public int DecodeString(string data, Stream outStream)

public int Encode(byte[] inBuf, int inOff, int inLen, byte[] outBuf, int outOff)

public int Encode(byte[] buf, int off, int len, Stream outStream)

protected void InitialiseDecodingTable()