SignatureAlgorithm.cs 507 B

12345678910111213141516171819
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
  5. {
  6. /**
  7. * RFC 5246 7.4.1.4.1 (in RFC 2246, there were no specific values assigned)
  8. */
  9. public abstract class SignatureAlgorithm
  10. {
  11. public const byte anonymous = 0;
  12. public const byte rsa = 1;
  13. public const byte dsa = 2;
  14. public const byte ecdsa = 3;
  15. }
  16. }
  17. #pragma warning restore
  18. #endif