IDsaExt.cs 611 B

123456789101112131415161718192021
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto
  6. {
  7. /// <summary>
  8. /// An "extended" interface for classes implementing DSA-style algorithms, that provides access
  9. /// to the group order.
  10. /// </summary>
  11. public interface IDsaExt
  12. : IDsa
  13. {
  14. /// <summary>The order of the group that the r, s values in signatures belong to.</summary>
  15. BigInteger Order { get; }
  16. }
  17. }
  18. #pragma warning restore
  19. #endif