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

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