summary refs log tree commit diff
path: root/crypto/src/math/ec/ECLookupTable.cs
blob: c14087d3b08380b30f8dde7c61af6304c561b106 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Org.BouncyCastle.Math.EC
{
    public interface ECLookupTable
    {
        int Size { get; }
        ECPoint Lookup(int index);
        ECPoint LookupVar(int index);
    }
}