This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 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: 0x02001C66 RID: 7270
[Token(Token = "0x2001C66")]
[Obsolete]
public class TlsProtocolHandler : TlsClientProtocol
{
// Token: 0x0600B358 RID: 45912 RVA: 0x0026BA90 File Offset: 0x00269C90
[Token(Token = "0x600B358")]
[Address(RVA = "0x45E9B0", Offset = "0x45D9B0", VA = "0x18045E9B0")]
public TlsProtocolHandler(Stream stream, SecureRandom secureRandom)
: base(stream, stream, secureRandom)
{
}
// Token: 0x0600B359 RID: 45913 RVA: 0x0026BAA8 File Offset: 0x00269CA8
[Token(Token = "0x600B359")]
[Address(RVA = "0x45E9A0", Offset = "0x45D9A0", VA = "0x18045E9A0")]
public TlsProtocolHandler(Stream input, Stream output, SecureRandom secureRandom)
: base(input, output, secureRandom)
{
}
}
}