blob: 4c0b404dfbd5023b204028178d8308ad2da45724 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
using System;
namespace Org.BouncyCastle.Math.EC.Multiplier
{
/**
* Class holding precomputation data for fixed-point multiplications.
*/
public class FixedPointPreCompInfo
: PreCompInfo
{
protected ECPoint m_offset = null;
/**
* Array holding the precomputed <code>ECPoint</code>s used for a fixed
* point multiplication.
*/
[Obsolete("Will be removed")]
protected ECPoint[] m_preComp = null;
/**
* Lookup table for the precomputed <code>ECPoint</code>s used for a fixed point multiplication.
*/
protected ECLookupTable m_lookupTable = null;
/**
* The width used for the precomputation. If a larger width precomputation
* is already available this may be larger than was requested, so calling
* code should refer to the actual width.
*/
protected int m_width = -1;
public virtual ECLookupTable LookupTable
{
get { return m_lookupTable; }
set { this.m_lookupTable = value; }
}
public virtual ECPoint Offset
{
get { return m_offset; }
set { this.m_offset = value; }
}
[Obsolete("Use 'LookupTable' property instead.")]
public virtual ECPoint[] PreComp
{
get { return m_preComp; }
set { this.m_preComp = value; }
}
public virtual int Width
{
get { return m_width; }
set { this.m_width = value; }
}
}
}
|