This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,30 @@
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);
}
}