Files
tianrunCRM/Assets/trCRM/Scripts/Audio/AcceptAllCertificatesSignedWithASpecificKeyPublicKey.cs
2020-08-10 22:23:49 +08:00

13 lines
309 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Networking;
public class AcceptAllCertificatesSignedWithASpecificKeyPublicKey : CertificateHandler
{
protected override bool ValidateCertificate(byte[] certificateData)
{
return true;
}
}