1 package org.bouncycastle.math.ec;
2 
3 public interface ECPointMap
4 {
map(ECPoint p)5     ECPoint map(ECPoint p);
6 }
7