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

namespace Org.BouncyCastle.Math.EC.Multiplier
{
    public interface IPreCompCallback
    {
        PreCompInfo Precompute(PreCompInfo existing);
    }
}