diff options
Diffstat (limited to 'crypto/src/math/ec/endo/GlvEndomorphism.cs')
-rw-r--r-- | crypto/src/math/ec/endo/GlvEndomorphism.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/src/math/ec/endo/GlvEndomorphism.cs b/crypto/src/math/ec/endo/GlvEndomorphism.cs new file mode 100644 index 000000000..f65bdd613 --- /dev/null +++ b/crypto/src/math/ec/endo/GlvEndomorphism.cs @@ -0,0 +1,10 @@ +using System; + +namespace Org.BouncyCastle.Math.EC.Endo +{ + public interface GlvEndomorphism + : ECEndomorphism + { + BigInteger[] DecomposeScalar(BigInteger k); + } +} |