0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 08:10:45 -05:00
modules/project/SPT.Core/Models/FakeCertificateHandler.cs

10 lines
222 B
C#

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