• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.bouncycastle.math.ec;
2 
3 /**
4  * Class holding precomputation data for the WTNAF (Window
5  * <code>&tau;</code>-adic Non-Adjacent Form) algorithm.
6  */
7 public class WTauNafPreCompInfo implements PreCompInfo
8 {
9     /**
10      * Array holding the precomputed <code>ECPoint.AbstractF2m</code>s used for the
11      * WTNAF multiplication.
12      */
13     protected ECPoint.AbstractF2m[] preComp = null;
14 
getPreComp()15     public ECPoint.AbstractF2m[] getPreComp()
16     {
17         return preComp;
18     }
19 
setPreComp(ECPoint.AbstractF2m[] preComp)20     public void setPreComp(ECPoint.AbstractF2m[] preComp)
21     {
22         this.preComp = preComp;
23     }
24 }
25