GlvEndomorphism.cs 336 B

1234567891011121314
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Endo
  5. {
  6. public interface GlvEndomorphism
  7. : ECEndomorphism
  8. {
  9. BigInteger[] DecomposeScalar(BigInteger k);
  10. }
  11. }
  12. #pragma warning restore
  13. #endif