11 lines
241 B
C#
11 lines
241 B
C#
using UnityEngine.Networking;
|
|
|
|
namespace Rizu.Core;
|
|
|
|
public class ForceAcceptAllCertificateHandler : CertificateHandler
|
|
{
|
|
protected override bool ValidateCertificate(byte[] certificateData)
|
|
{
|
|
return true;
|
|
}
|
|
} |