diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-01-24 19:18:01 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-01-24 19:18:01 +0700 |
commit | c1d609b35a28a5d517ac47ead9b50876a378d94a (patch) | |
tree | d3692828356ae5c7bfff818287a6ea419504f758 /crypto/test | |
parent | Default to COORD_HOMOGENEOUS for Fp (diff) | |
download | BouncyCastle.NET-ed25519-c1d609b35a28a5d517ac47ead9b50876a378d94a.tar.xz |
Some more EC point normalization
Diffstat (limited to 'crypto/test')
-rw-r--r-- | crypto/test/src/math/ec/test/F2mProofer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/test/src/math/ec/test/F2mProofer.cs b/crypto/test/src/math/ec/test/F2mProofer.cs index 88e868c34..727d32c55 100644 --- a/crypto/test/src/math/ec/test/F2mProofer.cs +++ b/crypto/test/src/math/ec/test/F2mProofer.cs @@ -83,7 +83,7 @@ // { // BigInteger rand = new BigInteger(inputProps.getProperty(Integer // .ToString(i)), 16); -// F2mPoint result = (F2mPoint) g.Multiply(rand); +// F2mPoint result = (F2mPoint) g.Multiply(rand).normalize(); // string resultStr = pointToString(result); // outputProps.setProperty(i.ToString(), resultStr); // } |