1 package org.bouncycastle.math.ec;
2
3 /**
4 * Interface for classes storing precomputation data for multiplication
5 * algorithms. Used as a Memento (see GOF patterns) by e.g.
6 * <code>WNafL2RMultiplier</code>.
7 */
8 public interface PreCompInfo
9 {
10 }
11