This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,29 @@
using System;
using System.IO;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
{
// Token: 0x02001B86 RID: 7046
[Token(Token = "0x2001B86")]
[Obsolete]
public class TlsProtocolHandler : TlsClientProtocol
{
// Token: 0x0600AF8A RID: 44938 RVA: 0x00262888 File Offset: 0x00260A88
[Token(Token = "0x600AF8A")]
[Address(RVA = "0x1981550", Offset = "0x1980350", VA = "0x181981550")]
public TlsProtocolHandler(Stream stream, SecureRandom secureRandom)
: base(stream, stream, secureRandom)
{
}
// Token: 0x0600AF8B RID: 44939 RVA: 0x002628A0 File Offset: 0x00260AA0
[Token(Token = "0x600AF8B")]
[Address(RVA = "0x1981540", Offset = "0x1980340", VA = "0x181981540")]
public TlsProtocolHandler(Stream input, Stream output, SecureRandom secureRandom)
: base(input, output, secureRandom)
{
}
}
}