summary refs log tree commit diff
path: root/crypto/src/tls/AlertLevel.cs
blob: 6e128e04d300d7733258dba76e40766bd8977791 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 + ")";
        }
    }
}