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

namespace Org.BouncyCastle.Tls
{
    /// <summary>RFC 4680</summary>
    public abstract class SupplementalDataType
    {
        /*
         * RFC 4681
         */
        public const int user_mapping_data = 0;
    }
}