This commit is contained in:
niko
2026-04-08 23:40:05 +02:00
parent d6894bcbc7
commit 18dc73f922
7750 changed files with 1795369 additions and 0 deletions
@@ -0,0 +1,32 @@
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);
}
}