summary refs log tree commit diff
path: root/crypto/src/tls/NamedGroupRole.cs
blob: d86e6ad61dfc49787b07a17e7b9c1ede12fd3391 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace Org.BouncyCastle.Tls
{
    /// <remarks>
    /// Note that the values here are implementation-specific and arbitrary. It is recommended not to depend on the
    /// particular values (e.g. serialization).
    /// </remarks>
    public abstract class NamedGroupRole
    {
        public const int dh = 1;
        public const int ecdh = 2;
        public const int ecdsa = 3;
    }
}