You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
367 B

namespace Org.BouncyCastle.Crypto.Tls
{
/// <summary>
/// RFC 4492 5.1.2
/// </summary>
public abstract class ECPointFormat
{
public const byte uncompressed = 0;
public const byte ansiX962_compressed_prime = 1;
public const byte ansiX962_compressed_char2 = 2;
/*
* reserved (248..255)
*/
}
}