mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 06:10:45 -05:00
10 lines
222 B
C#
10 lines
222 B
C#
using UnityEngine.Networking;
|
|
|
|
namespace SPT.Core.Models
|
|
{
|
|
public class FakeCertificateHandler : CertificateHandler
|
|
{
|
|
protected override bool ValidateCertificate(byte[] certificateData) => true;
|
|
}
|
|
}
|