PreCompInfo.cs 334 B

123456789101112131415
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. namespace Org.BouncyCastle.Math.EC.Multiplier
  3. {
  4. /**
  5. * Interface for classes storing precomputation data for multiplication
  6. * algorithms. Used as a Memento (see GOF patterns) for
  7. * <code>WNafMultiplier</code>.
  8. */
  9. public interface PreCompInfo
  10. {
  11. }
  12. }
  13. #endif