diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-02-25 16:22:22 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-02-25 16:22:22 +0700 |
commit | 88c2d41778bb378b2d9b4da27f1bcd332f134041 (patch) | |
tree | d571c6e5b932ab178b351357bcebd68389d02f84 | |
parent | Refactoring in Nat* classes (diff) | |
download | BouncyCastle.NET-ed25519-88c2d41778bb378b2d9b4da27f1bcd332f134041.tar.xz |
Implement the 8m + 5 case from Pocklington's sqrt algorithm (seems to be only used by secp224k1)
-rw-r--r-- | crypto/src/math/ec/ECFieldElement.cs | 52 |
1 files changed, 45 insertions, 7 deletions
diff --git a/crypto/src/math/ec/ECFieldElement.cs b/crypto/src/math/ec/ECFieldElement.cs index 40597077e..ddd66d2fa 100644 --- a/crypto/src/math/ec/ECFieldElement.cs +++ b/crypto/src/math/ec/ECFieldElement.cs @@ -252,20 +252,44 @@ namespace Org.BouncyCastle.Math.EC */ public override ECFieldElement Sqrt() { + if (IsZero || IsOne) + return this; + if (!q.TestBit(0)) throw Platform.CreateNotImplementedException("even value of q"); - // p mod 4 == 3 - if (q.TestBit(1)) + if (q.TestBit(1)) // q == 4m + 3 + { + BigInteger e = q.ShiftRight(2).Add(BigInteger.One); + return CheckSqrt(new FpFieldElement(q, r, x.ModPow(e, q))); + } + + if (q.TestBit(2)) // q == 8m + 5 { - // TODO Can this be optimised (inline the Square?) - // z = g^(u+1) + p, p = 4u + 3 - ECFieldElement z = new FpFieldElement(q, r, x.ModPow(q.ShiftRight(2).Add(BigInteger.One), q)); + BigInteger m = q.ShiftRight(3); + + BigInteger t1 = x.ModPow(m, q); + BigInteger t2 = ModMult(t1, x); + BigInteger t3 = ModMult(t2, t1); + + if (t3.Equals(BigInteger.One)) + { + return CheckSqrt(new FpFieldElement(q, r, t2)); + } + + BigInteger e = m.Add(BigInteger.One); + + // TODO This is constant and could be precomputed + BigInteger t4 = BigInteger.ValueOf(4).ModPow(e, q); +// BigInteger t4 = BigInteger.Two.ModPow(e.ShiftLeft(1), q); - return z.Square().Equals(this) ? z : null; + BigInteger y = ModMult(t2, t4); + + return CheckSqrt(new FpFieldElement(q, r, ModHalf(y))); } - // p mod 4 == 1 + // q == 8m + 1 + BigInteger qMinusOne = q.Subtract(BigInteger.One); BigInteger legendreExponent = qMinusOne.ShiftRight(1); @@ -314,6 +338,11 @@ namespace Org.BouncyCastle.Math.EC return null; } + private ECFieldElement CheckSqrt(ECFieldElement z) + { + return z.Square().Equals(this) ? z : null; + } + private BigInteger[] LucasSequence( BigInteger P, BigInteger Q, @@ -388,6 +417,15 @@ namespace Org.BouncyCastle.Math.EC return _2x; } + protected virtual BigInteger ModHalf(BigInteger x) + { + if (x.TestBit(0)) + { + x = q.Subtract(x); + } + return x.ShiftRight(1); + } + protected virtual BigInteger ModInverse(BigInteger x) { int bits = FieldSize; |