EndoPreCompInfo.cs 752 B

123456789101112131415161718192021222324252627282930
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Endo
  6. {
  7. public class EndoPreCompInfo
  8. : PreCompInfo
  9. {
  10. protected ECEndomorphism m_endomorphism;
  11. protected ECPoint m_mappedPoint;
  12. public virtual ECEndomorphism Endomorphism
  13. {
  14. get { return m_endomorphism; }
  15. set { this.m_endomorphism = value; }
  16. }
  17. public virtual ECPoint MappedPoint
  18. {
  19. get { return m_mappedPoint; }
  20. set { this.m_mappedPoint = value; }
  21. }
  22. }
  23. }
  24. #pragma warning restore
  25. #endif