20 lines
399 B
C#
20 lines
399 B
C#
#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
|