aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/bouncycastle/math/ec/PreCompInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/bouncycastle/math/ec/PreCompInfo.java')
-rw-r--r--src/org/bouncycastle/math/ec/PreCompInfo.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/org/bouncycastle/math/ec/PreCompInfo.java b/src/org/bouncycastle/math/ec/PreCompInfo.java
new file mode 100644
index 0000000..804dcf7
--- /dev/null
+++ b/src/org/bouncycastle/math/ec/PreCompInfo.java
@@ -0,0 +1,10 @@
+package org.bouncycastle.math.ec;
+
+/**
+ * Interface for classes storing precomputation data for multiplication
+ * algorithms. Used as a Memento (see GOF patterns) for
+ * <code>WNafMultiplier</code>.
+ */
+interface PreCompInfo
+{
+}