Files
libraries-tivadar-besthttp/Runtime/3rdParty/BouncyCastle/tls/TlsPsk.cs
2026-07-03 05:02:26 +03:00

20 lines
401 B
C#

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