This commit is contained in:
Lapis
2026-04-01 09:16:28 -04:00
commit 6c9f4499e4
6 changed files with 530 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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;
}
}
}