Files

14 lines
223 B
C#
Raw Permalink Normal View History

2020-07-09 08:50:24 +08:00
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
using System;
namespace Org.BouncyCastle.Crypto.Tls
{
public interface TlsCredentials
{
Certificate Certificate { get; }
}
}
#endif