13 lines
195 B
C#
13 lines
195 B
C#
namespace Org.BouncyCastle.Crypto.Tls;
|
|
|
|
public interface TlsSession
|
|
{
|
|
byte[] SessionID { get; }
|
|
|
|
bool IsResumable { get; }
|
|
|
|
SessionParameters ExportSessionParameters();
|
|
|
|
void Invalidate();
|
|
}
|