summary refs log tree commit diff
path: root/crypto/src/tls/AlertLevel.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2021-07-12 15:15:36 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2021-07-12 15:15:36 +0700
commit68c795fe81277f73aeb90d8ad4c6f4305f32c906 (patch)
tree59643344aafef91bbd4c4a3a7973deba3d837a00 /crypto/src/tls/AlertLevel.cs
parentTLS test tweaks (diff)
downloadBouncyCastle.NET-ed25519-68c795fe81277f73aeb90d8ad4c6f4305f32c906.tar.xz
Port of new TLS API from bc-java
Diffstat (limited to 'crypto/src/tls/AlertLevel.cs')
-rw-r--r--crypto/src/tls/AlertLevel.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/crypto/src/tls/AlertLevel.cs b/crypto/src/tls/AlertLevel.cs
new file mode 100644
index 000000000..6e128e04d
--- /dev/null
+++ b/crypto/src/tls/AlertLevel.cs
@@ -0,0 +1,29 @@
+using System;
+
+namespace Org.BouncyCastle.Tls
+{
+    /// <summary>RFC 5246 7.2</summary>
+    public abstract class AlertLevel
+    {
+        public const short warning = 1;
+        public const short fatal = 2;
+
+        public static string GetName(short alertDescription)
+        {
+            switch (alertDescription)
+            {
+            case warning:
+                return "warning";
+            case fatal:
+                return "fatal";
+            default:
+                return "UNKNOWN";
+            }
+        }
+
+        public static string GetText(short alertDescription)
+        {
+            return GetName(alertDescription) + "(" + alertDescription + ")";
+        }
+    }
+}