Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

139 wiersze
4.3 KiB

  1. package sike
  2. // Set dest = x^((p-3)/4). If x is square, this is 1/sqrt(x).
  3. // Uses variation of sliding-window algorithm from with window size
  4. // of 5 and least to most significant bit sliding (left-to-right)
  5. // See HAC 14.85 for general description.
  6. //
  7. // Allowed to overlap x with dest.
  8. // All values in Montgomery domains
  9. // Set dest = x^(2^k), for k >= 1, by repeated squarings.
  10. func p34(dest, x *Fp) {
  11. var lookup [16]Fp
  12. // This performs sum(powStrategy) + 1 squarings and len(lookup) + len(mulStrategy)
  13. // multiplications.
  14. powStrategy := []uint8{12, 5, 5, 2, 7, 11, 3, 8, 4, 11, 4, 7, 5, 6, 3, 7, 5, 7, 2, 12, 5, 6, 4, 6, 8, 6, 4, 7, 5, 5, 8, 5, 8, 5, 5, 8, 9, 3, 6, 2, 10, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3}
  15. mulStrategy := []uint8{12, 11, 10, 0, 1, 8, 3, 7, 1, 8, 3, 6, 7, 14, 2, 14, 14, 9, 0, 13, 9, 15, 5, 12, 7, 13, 7, 15, 6, 7, 9, 0, 5, 7, 6, 8, 8, 3, 7, 0, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 3}
  16. initialMul := uint8(0)
  17. // Precompute lookup table of odd multiples of x for window
  18. // size k=5.
  19. var xx Fp
  20. fpMulRdc(&xx, x, x)
  21. lookup[0] = *x
  22. for i := 1; i < 16; i++ {
  23. fpMulRdc(&lookup[i], &lookup[i-1], &xx)
  24. }
  25. // Now lookup = {x, x^3, x^5, ... }
  26. // so that lookup[i] = x^{2*i + 1}
  27. // so that lookup[k/2] = x^k, for odd k
  28. *dest = lookup[initialMul]
  29. for i := uint8(0); i < uint8(len(powStrategy)); i++ {
  30. fpMulRdc(dest, dest, dest)
  31. for j := uint8(1); j < powStrategy[i]; j++ {
  32. fpMulRdc(dest, dest, dest)
  33. }
  34. fpMulRdc(dest, dest, &lookup[mulStrategy[i]])
  35. }
  36. }
  37. func add(dest, lhs, rhs *Fp2) {
  38. fpAddRdc(&dest.A, &lhs.A, &rhs.A)
  39. fpAddRdc(&dest.B, &lhs.B, &rhs.B)
  40. }
  41. func sub(dest, lhs, rhs *Fp2) {
  42. fpSubRdc(&dest.A, &lhs.A, &rhs.A)
  43. fpSubRdc(&dest.B, &lhs.B, &rhs.B)
  44. }
  45. func mul(dest, lhs, rhs *Fp2) {
  46. // Let (a,b,c,d) = (lhs.a,lhs.b,rhs.a,rhs.b).
  47. a := &lhs.A
  48. b := &lhs.B
  49. c := &rhs.A
  50. d := &rhs.B
  51. // We want to compute
  52. //
  53. // (a + bi)*(c + di) = (a*c - b*d) + (a*d + b*c)i
  54. //
  55. // Use Karatsuba's trick: note that
  56. //
  57. // (b - a)*(c - d) = (b*c + a*d) - a*c - b*d
  58. //
  59. // so (a*d + b*c) = (b-a)*(c-d) + a*c + b*d.
  60. var ac, bd FpX2
  61. fpMul(&ac, a, c) // = a*c*R*R
  62. fpMul(&bd, b, d) // = b*d*R*R
  63. var b_minus_a, c_minus_d Fp
  64. fpSubRdc(&b_minus_a, b, a) // = (b-a)*R
  65. fpSubRdc(&c_minus_d, c, d) // = (c-d)*R
  66. var ad_plus_bc FpX2
  67. fpMul(&ad_plus_bc, &b_minus_a, &c_minus_d) // = (b-a)*(c-d)*R*R
  68. fp2Add(&ad_plus_bc, &ad_plus_bc, &ac) // = ((b-a)*(c-d) + a*c)*R*R
  69. fp2Add(&ad_plus_bc, &ad_plus_bc, &bd) // = ((b-a)*(c-d) + a*c + b*d)*R*R
  70. fpMontRdc(&dest.B, &ad_plus_bc) // = (a*d + b*c)*R mod p
  71. var ac_minus_bd FpX2
  72. fp2Sub(&ac_minus_bd, &ac, &bd) // = (a*c - b*d)*R*R
  73. fpMontRdc(&dest.A, &ac_minus_bd) // = (a*c - b*d)*R mod p
  74. }
  75. func inv(dest, x *Fp2) {
  76. var e1, e2 FpX2
  77. var f1, f2 Fp
  78. fpMul(&e1, &x.A, &x.A) // = a*a*R*R
  79. fpMul(&e2, &x.B, &x.B) // = b*b*R*R
  80. fp2Add(&e1, &e1, &e2) // = (a^2 + b^2)*R*R
  81. fpMontRdc(&f1, &e1) // = (a^2 + b^2)*R mod p
  82. // Now f1 = a^2 + b^2
  83. fpMulRdc(&f2, &f1, &f1)
  84. p34(&f2, &f2)
  85. fpMulRdc(&f2, &f2, &f2)
  86. fpMulRdc(&f2, &f2, &f1)
  87. fpMul(&e1, &x.A, &f2)
  88. fpMontRdc(&dest.A, &e1)
  89. fpSubRdc(&f1, &Fp{}, &x.B)
  90. fpMul(&e1, &f1, &f2)
  91. fpMontRdc(&dest.B, &e1)
  92. }
  93. func sqr(dest, x *Fp2) {
  94. var a2, aPlusB, aMinusB Fp
  95. var a2MinB2, ab2 FpX2
  96. a := &x.A
  97. b := &x.B
  98. // (a + bi)*(a + bi) = (a^2 - b^2) + 2abi.
  99. fpAddRdc(&a2, a, a) // = a*R + a*R = 2*a*R
  100. fpAddRdc(&aPlusB, a, b) // = a*R + b*R = (a+b)*R
  101. fpSubRdc(&aMinusB, a, b) // = a*R - b*R = (a-b)*R
  102. fpMul(&a2MinB2, &aPlusB, &aMinusB) // = (a+b)*(a-b)*R*R = (a^2 - b^2)*R*R
  103. fpMul(&ab2, &a2, b) // = 2*a*b*R*R
  104. fpMontRdc(&dest.A, &a2MinB2) // = (a^2 - b^2)*R mod p
  105. fpMontRdc(&dest.B, &ab2) // = 2*a*b*R mod p
  106. }
  107. // In case choice == 1, performs following swap in constant time:
  108. // xPx <-> xQx
  109. // xPz <-> xQz
  110. // Otherwise returns xPx, xPz, xQx, xQz unchanged
  111. func condSwap(xPx, xPz, xQx, xQz *Fp2, choice uint8) {
  112. fpSwapCond(&xPx.A, &xQx.A, choice)
  113. fpSwapCond(&xPx.B, &xQx.B, choice)
  114. fpSwapCond(&xPz.A, &xQz.A, choice)
  115. fpSwapCond(&xPz.B, &xQz.B, choice)
  116. }