SignatureAlgorithm.cs 437 B

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