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

namespace Org.BouncyCastle.Math.EC
{
    public interface ECPointMap
    {
        ECPoint Map(ECPoint p);
    }
}