up
This commit is contained in:
20
Assets/BestHTTP/SecureProtocol/crypto/tls/ECPointFormat.cs
Normal file
20
Assets/BestHTTP/SecureProtocol/crypto/tls/ECPointFormat.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
|
||||
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)
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user