summary refs log tree commit diff
path: root/crypto/src/math/ec/multiplier/PreCompInfo.cs
blob: 5c3289286d8cccb33fa936a02885538771bc8f38 (plain) (blame)
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>.
	*/
	public interface PreCompInfo
	{
	}
}