Files
ichni_Official/Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/tls/TlsPsk.cs
2026-06-15 18:18:16 +08: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