Files
SuperVPN/output/Libraries/BouncyCastle.Crypto/Org/BouncyCastle/Crypto/Tls/TlsSession.cs
2025-10-09 09:57:24 +09:00

13 lines
195 B
C#

namespace Org.BouncyCastle.Crypto.Tls;
public interface TlsSession
{
byte[] SessionID { get; }
bool IsResumable { get; }
SessionParameters ExportSessionParameters();
void Invalidate();
}