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

namespace Org.BouncyCastle.Math.EC.Endo
{
    public interface GlvEndomorphism
        :   ECEndomorphism
    {
        BigInteger[] DecomposeScalar(BigInteger k);
    }
}