diff options
Diffstat (limited to 'crypto/src/tls/ECPointFormat.cs')
-rw-r--r-- | crypto/src/tls/ECPointFormat.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/crypto/src/tls/ECPointFormat.cs b/crypto/src/tls/ECPointFormat.cs new file mode 100644 index 000000000..d399cc604 --- /dev/null +++ b/crypto/src/tls/ECPointFormat.cs @@ -0,0 +1,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) + */ + } +} |