TlsDecodeResult
namespace Org.BouncyCastle.Tls.Crypto
{
public sealed class TlsDecodeResult
{
public readonly byte[] buf;
public readonly int off;
public readonly int len;
public readonly short contentType;
public TlsDecodeResult(byte[] buf, int off, int len, short contentType)
{
this.buf = buf;
this.off = off;
this.len = len;
this.contentType = contentType;
}
}
}