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.
26 lines
880 B
26 lines
880 B
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System; |
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto |
|
{ |
|
public abstract class CryptoSignatureAlgorithm |
|
{ |
|
public const int rsa = 1; |
|
public const int dsa = 2; |
|
public const int ecdsa = 3; |
|
public const int rsa_pss_rsae_sha256 = 4; |
|
public const int rsa_pss_rsae_sha384 = 5; |
|
public const int rsa_pss_rsae_sha512 = 6; |
|
public const int ed25519 = 7; |
|
public const int ed448 = 8; |
|
public const int rsa_pss_pss_sha256 = 9; |
|
public const int rsa_pss_pss_sha384 = 10; |
|
public const int rsa_pss_pss_sha512 = 11; |
|
public const int gostr34102012_256 = 64; |
|
public const int gostr34102012_512 = 65; |
|
public const int sm2 = 200; |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|