Files
recnet-plugin/CannedNet.Client/Patches/FuckOffTLS.cs
T
2026-04-01 09:16:28 -04:00

16 lines
321 B
C#

using HarmonyLib;
using Org.BouncyCastle.Crypto.Tls;
namespace CannedNet.Client.Patches;
public class FuckOffTLS
{
[HarmonyPatch(typeof(LegacyTlsAuthentication), "NotifyServerCertificate")]
public class TlsPatch
{
private static bool Prefix()
{
return false;
}
}
}