This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,26 @@
using System;
using System.IO;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Encoders
{
// Token: 0x02001A30 RID: 6704
[Token(Token = "0x2001A30")]
public interface IEncoder
{
// Token: 0x06009D9F RID: 40351
[Token(Token = "0x6009D9F")]
[Address(Slot = "0")]
int Encode(byte[] data, int off, int length, Stream outStream);
// Token: 0x06009DA0 RID: 40352
[Token(Token = "0x6009DA0")]
[Address(Slot = "1")]
int Decode(byte[] data, int off, int length, Stream outStream);
// Token: 0x06009DA1 RID: 40353
[Token(Token = "0x6009DA1")]
[Address(Slot = "2")]
int DecodeString(string data, Stream outStream);
}
}