PreCompInfo.java revision 5db505e1f6a68c8d5dfdb0fed0b8607dea7bed96
1package 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 */
8public interface PreCompInfo
9{
10}
11