diff options
author | Oren Novotny <oren@novotny.org> | 2019-06-16 23:01:18 -0400 |
---|---|---|
committer | Oren Novotny <oren@novotny.org> | 2019-06-16 23:01:18 -0400 |
commit | 34e9c6a3fe1576e8a7f98abe7a6cd8bc2fc16e37 (patch) | |
tree | 18e21c68a463ca5ee99d83434cf1440a1feb5fcd /crypto | |
parent | merge from master (diff) | |
parent | fixed typo (diff) | |
download | BouncyCastle.NET-ed25519-34e9c6a3fe1576e8a7f98abe7a6cd8bc2fc16e37.tar.xz |
Merge branch 'master' into netstandard
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/test/src/math/ec/test/ECPointTest.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/test/src/math/ec/test/ECPointTest.cs b/crypto/test/src/math/ec/test/ECPointTest.cs index a5ca083e2..dbd739023 100644 --- a/crypto/test/src/math/ec/test/ECPointTest.cs +++ b/crypto/test/src/math/ec/test/ECPointTest.cs @@ -268,12 +268,12 @@ namespace Org.BouncyCastle.Math.EC.Tests { for (int i = 0; i < Fp.p.Length; i++) { - ImplTestAllPoints(Fp.p[0], Fp.infinity); + ImplTestAllPoints(Fp.p[i], Fp.infinity); } for (int i = 0; i < F2m.p.Length; i++) { - ImplTestAllPoints(F2m.p[0], F2m.infinity); + ImplTestAllPoints(F2m.p[i], F2m.infinity); } } |