12345678910111213141516171819 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls
- {
- public interface TlsPsk
- {
- byte[] Identity { get; }
- TlsSecret Key { get; }
- int PrfAlgorithm { get; }
- }
- }
- #pragma warning restore
- #endif
|