12 lines
242 B
C#
12 lines
242 B
C#
using UnityEngine.Networking;
|
|
|
|
namespace ET
|
|
{
|
|
public class AcceptAllCertificate : CertificateHandler
|
|
{
|
|
protected override bool ValidateCertificate(byte[] certificateData)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
} |