Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ECEndomorphism.java « endo « ec « math « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2be0c01da7c5837d80d3568ebef35ee8f211be56 (plain)
1
2
3
4
5
6
7
8
9
10
package org.bouncycastle.math.ec.endo;

import org.bouncycastle.math.ec.ECPointMap;

public interface ECEndomorphism
{
    ECPointMap getPointMap();

    boolean hasEfficientPointMap();
}