using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Encoders { // Token: 0x02001374 RID: 4980 [Token(Token = "0x2001374")] [StructLayout(3)] public interface ITranslator { // Token: 0x06007DFA RID: 32250 [Token(Token = "0x6007DFA")] [Address(Slot = "0")] int GetEncodedBlockSize(); // Token: 0x06007DFB RID: 32251 [Token(Token = "0x6007DFB")] [Address(Slot = "1")] int Encode(byte[] input, int inOff, int length, byte[] outBytes, int outOff); // Token: 0x06007DFC RID: 32252 [Token(Token = "0x6007DFC")] [Address(Slot = "2")] int GetDecodedBlockSize(); // Token: 0x06007DFD RID: 32253 [Token(Token = "0x6007DFD")] [Address(Slot = "3")] int Decode(byte[] input, int inOff, int length, byte[] outBytes, int outOff); } }