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

namespace Org.BouncyCastle.Tls
{
    /// <summary>RFC 4492 5.1.2</summary>
    public abstract class ECPointFormat
    {
        public const short uncompressed = 0;
        public const short ansiX962_compressed_prime = 1;
        public const short ansiX962_compressed_char2 = 2;

        /*
         * reserved (248..255)
         */
    }
}