NamedGroupRole.cs 557 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.Tls
  5. {
  6. /// <remarks>
  7. /// Note that the values here are implementation-specific and arbitrary. It is recommended not to depend on the
  8. /// particular values (e.g. serialization).
  9. /// </remarks>
  10. public abstract class NamedGroupRole
  11. {
  12. public const int dh = 1;
  13. public const int ecdh = 2;
  14. public const int ecdsa = 3;
  15. }
  16. }
  17. #pragma warning restore
  18. #endif