GlvEndomorphism.cs 266 B

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