31 lines
789 B
C#
31 lines
789 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Encoders
|
|
{
|
|
// Token: 0x02001951 RID: 6481
|
|
[Token(Token = "0x2001951")]
|
|
public interface ITranslator
|
|
{
|
|
// Token: 0x060099D4 RID: 39380
|
|
[Token(Token = "0x60099D4")]
|
|
[Address(Slot = "0")]
|
|
int GetEncodedBlockSize();
|
|
|
|
// Token: 0x060099D5 RID: 39381
|
|
[Token(Token = "0x60099D5")]
|
|
[Address(Slot = "1")]
|
|
int Encode(byte[] input, int inOff, int length, byte[] outBytes, int outOff);
|
|
|
|
// Token: 0x060099D6 RID: 39382
|
|
[Token(Token = "0x60099D6")]
|
|
[Address(Slot = "2")]
|
|
int GetDecodedBlockSize();
|
|
|
|
// Token: 0x060099D7 RID: 39383
|
|
[Token(Token = "0x60099D7")]
|
|
[Address(Slot = "3")]
|
|
int Decode(byte[] input, int inOff, int length, byte[] outBytes, int outOff);
|
|
}
|
|
}
|