PreCompInfo.cs 404 B

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