diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-02-26 23:20:26 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-02-26 23:20:26 +0700 |
commit | 42edb2de8521c23a5d3d80c0a97aea27d9a15483 (patch) | |
tree | 1a2e4ddba030967950f3bfaab736302402d79c6d /crypto/src/math/ec/custom/sec/SecP256R1Field.cs | |
parent | Add extra arg to AddWord() and add variant of Copy() (diff) | |
download | BouncyCastle.NET-ed25519-42edb2de8521c23a5d3d80c0a97aea27d9a15483.tar.xz |
Round out the Nat192 methods
Use Nat*.Copy methods in fields
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecP256R1Field.cs')
-rw-r--r-- | crypto/src/math/ec/custom/sec/SecP256R1Field.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecP256R1Field.cs b/crypto/src/math/ec/custom/sec/SecP256R1Field.cs index 9e366bffe..dd37820b6 100644 --- a/crypto/src/math/ec/custom/sec/SecP256R1Field.cs +++ b/crypto/src/math/ec/custom/sec/SecP256R1Field.cs @@ -33,7 +33,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec public static void AddOne(uint[] x, uint[] z) { - Array.Copy(x, 0, z, 0, 8); + Nat256.Copy(x, z); uint c = Nat256.Inc(z, 0); if (c != 0 || (z[7] == P7 && Nat256.Gte(z, P))) { |