Files
Jan2021-Cpp2Il-Dump/Assembly-CSharp/BestHTTP/SecureProtocol/Org/BouncyCastle/Crypto/Tls/TlsProtocolHandler.cs
T
2026-04-08 23:40:05 +02:00

32 lines
976 B
C#

using System;
using System.IO;
using System.Runtime.InteropServices;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
{
// Token: 0x020015A9 RID: 5545
[Token(Token = "0x20015A9")]
[Obsolete]
[StructLayout(3)]
public class TlsProtocolHandler : TlsClientProtocol
{
// Token: 0x060093B0 RID: 37808 RVA: 0x0020B1B0 File Offset: 0x002093B0
[Token(Token = "0x60093B0")]
[Address(RVA = "0x1DFE840", Offset = "0x1DFD240", VA = "0x181DFE840")]
public TlsProtocolHandler(Stream stream, SecureRandom secureRandom)
: base(stream, stream, secureRandom)
{
}
// Token: 0x060093B1 RID: 37809 RVA: 0x0020B1C8 File Offset: 0x002093C8
[Token(Token = "0x60093B1")]
[Address(RVA = "0x1DFE830", Offset = "0x1DFD230", VA = "0x181DFE830")]
public TlsProtocolHandler(Stream input, Stream output, SecureRandom secureRandom)
: base(input, output, secureRandom)
{
}
}
}