27 lines
678 B
C#
27 lines
678 B
C#
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);
|
|
}
|
|
}
|