summary refs log tree commit diff
path: root/Crypto/src/math/ec/multiplier/PreCompInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Crypto/src/math/ec/multiplier/PreCompInfo.cs')
-rw-r--r--Crypto/src/math/ec/multiplier/PreCompInfo.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Crypto/src/math/ec/multiplier/PreCompInfo.cs b/Crypto/src/math/ec/multiplier/PreCompInfo.cs
new file mode 100644

index 000000000..d379508c8 --- /dev/null +++ b/Crypto/src/math/ec/multiplier/PreCompInfo.cs
@@ -0,0 +1,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 + { + } +}