summary refs log tree commit diff
path: root/crypto/src/tls/KeyUpdateRequest.cs
blob: 2a784e6e71f1a86378ce8b51fcb61b8187186e3f (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
30
31
32
33
34
using System;

namespace Org.BouncyCastle.Tls
{
    /// <summary>RFC 8446 4.6.3</summary>
    public abstract class KeyUpdateRequest
    {
        public const short update_not_requested = 0;
        public const short update_requested = 1;

        public static string GetName(short keyUpdateRequest)
        {
            switch (keyUpdateRequest)
            {
            case update_not_requested:
                return "update_not_requested";
            case update_requested:
                return "update_requested";
            default:
                return "UNKNOWN";
            }
        }

        public static string GetText(short keyUpdateRequest)
        {
            return GetName(keyUpdateRequest) + "(" + keyUpdateRequest + ")";
        }

        public static bool IsValid(short keyUpdateRequest)
        {
            return keyUpdateRequest >= update_not_requested && keyUpdateRequest <= update_requested;
        }
    }
}