Files
3rdPartyLibraries/iTechSharp/srcbc/math/ec/multiplier/PreCompInfo.cs
2023-06-21 12:46:23 -04:00

12 lines
257 B
C#

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
{
}
}