diff options
Diffstat (limited to 'crypto/src/tls/TlsSession.cs')
-rw-r--r-- | crypto/src/tls/TlsSession.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/crypto/src/tls/TlsSession.cs b/crypto/src/tls/TlsSession.cs new file mode 100644 index 000000000..bc68757c2 --- /dev/null +++ b/crypto/src/tls/TlsSession.cs @@ -0,0 +1,16 @@ +using System; + +namespace Org.BouncyCastle.Tls +{ + /// <summary>Base interface for a carrier object for a TLS session.</summary> + public interface TlsSession + { + SessionParameters ExportSessionParameters(); + + byte[] SessionID { get; } + + void Invalidate(); + + bool IsResumable { get; } + } +} |