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: 0x02001950 RID: 6480
|
|
[Token(Token = "0x2001950")]
|
|
public interface IEncoder
|
|
{
|
|
// Token: 0x060099D1 RID: 39377
|
|
[Token(Token = "0x60099D1")]
|
|
[Address(Slot = "0")]
|
|
int Encode(byte[] data, int off, int length, Stream outStream);
|
|
|
|
// Token: 0x060099D2 RID: 39378
|
|
[Token(Token = "0x60099D2")]
|
|
[Address(Slot = "1")]
|
|
int Decode(byte[] data, int off, int length, Stream outStream);
|
|
|
|
// Token: 0x060099D3 RID: 39379
|
|
[Token(Token = "0x60099D3")]
|
|
[Address(Slot = "2")]
|
|
int DecodeString(string data, Stream outStream);
|
|
}
|
|
}
|