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