0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:10:44 -05:00
modules/project/SPT.Core/Models/FakeCertificateHandler.cs
2024-05-21 19:10:17 +01:00

11 lines
244 B
C#

using UnityEngine.Networking;
using SPT.Core.Utils;
namespace SPT.Core.Models
{
public class FakeCertificateHandler : CertificateHandler
{
protected override bool ValidateCertificate(byte[] certificateData) => true;
}
}