1 2 3 4 5 6 7 8 9 10 11
namespace Org.BouncyCastle.Math.EC.Multiplier { /** * Interface for classes storing precomputation data for multiplication * algorithms. Used as a Memento (see GOF patterns) for * <code>WNafMultiplier</code>. */ internal interface PreCompInfo { } }