mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:30:46 -05:00
14 lines
301 B
C#
14 lines
301 B
C#
using UnityEngine.Networking;
|
|
using Aki.Core.Utils;
|
|
|
|
namespace Aki.Core.Models
|
|
{
|
|
public class FakeCertificateHandler : CertificateHandler
|
|
{
|
|
protected override bool ValidateCertificate(byte[] certificateData)
|
|
{
|
|
return ValidationUtil.Validate();
|
|
}
|
|
}
|
|
}
|