9 lines
120 B
C#
9 lines
120 B
C#
namespace Org.BouncyCastle.Math.EC;
|
|
|
|
public interface ECLookupTable
|
|
{
|
|
int Size { get; }
|
|
|
|
ECPoint Lookup(int index);
|
|
}
|