summary refs log tree commit diff
path: root/crypto/src/tls/TlsClientContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/tls/TlsClientContext.cs')
-rw-r--r--crypto/src/tls/TlsClientContext.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/src/tls/TlsClientContext.cs b/crypto/src/tls/TlsClientContext.cs
new file mode 100644
index 000000000..f1ed06e04
--- /dev/null
+++ b/crypto/src/tls/TlsClientContext.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace Org.BouncyCastle.Tls
+{
+    /// <summary>Marker interface to distinguish a TLS client context.</summary>
+    public interface TlsClientContext
+        : TlsContext
+    {
+    }
+}