summary refs log tree commit diff
path: root/crypto/src/tls/ClientAuthenticationType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/tls/ClientAuthenticationType.cs')
-rw-r--r--crypto/src/tls/ClientAuthenticationType.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/crypto/src/tls/ClientAuthenticationType.cs b/crypto/src/tls/ClientAuthenticationType.cs
new file mode 100644
index 000000000..2166e973e
--- /dev/null
+++ b/crypto/src/tls/ClientAuthenticationType.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace Org.BouncyCastle.Tls
+{
+    public abstract class ClientAuthenticationType
+    {
+        /*
+         * RFC 5077 4
+         */
+        public const short anonymous = 0;
+        public const short certificate_based = 1;
+        public const short psk = 2;
+    }
+}