You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

220 lines
5.4 KiB

5 years ago
5 years ago
  1. package r1csqap
  2. import (
  3. "bytes"
  4. "fmt"
  5. "math/big"
  6. "github.com/mottla/go-snark/fields"
  7. )
  8. // Transpose transposes the *big.Int matrix
  9. func Transpose(matrix [][]*big.Int) [][]*big.Int {
  10. var r [][]*big.Int
  11. for i := 0; i < len(matrix[0]); i++ {
  12. var row []*big.Int
  13. for j := 0; j < len(matrix); j++ {
  14. row = append(row, matrix[j][i])
  15. }
  16. r = append(r, row)
  17. }
  18. return r
  19. }
  20. // ArrayOfBigZeros creates a *big.Int array with n elements to zero
  21. func ArrayOfBigZeros(num int) []*big.Int {
  22. bigZero := big.NewInt(int64(0))
  23. var r []*big.Int
  24. for i := 0; i < num; i++ {
  25. r = append(r, bigZero)
  26. }
  27. return r
  28. }
  29. func BigArraysEqual(a, b []*big.Int) bool {
  30. if len(a) != len(b) {
  31. return false
  32. }
  33. for i := 0; i < len(a); i++ {
  34. if !bytes.Equal(a[i].Bytes(), b[i].Bytes()) {
  35. return false
  36. }
  37. }
  38. return true
  39. }
  40. // PolynomialField is the Polynomial over a Finite Field where the polynomial operations are performed
  41. type PolynomialField struct {
  42. F fields.Fq
  43. }
  44. // NewPolynomialField creates a new PolynomialField with the given FiniteField
  45. func NewPolynomialField(f fields.Fq) PolynomialField {
  46. return PolynomialField{
  47. f,
  48. }
  49. }
  50. // Mul multiplies two polinomials over the Finite Field
  51. func (pf PolynomialField) Mul(a, b []*big.Int) []*big.Int {
  52. r := ArrayOfBigZeros(len(a) + len(b) - 1)
  53. for i := 0; i < len(a); i++ {
  54. for j := 0; j < len(b); j++ {
  55. r[i+j] = pf.F.Add(
  56. r[i+j],
  57. pf.F.Mul(a[i], b[j]))
  58. }
  59. }
  60. return r
  61. }
  62. // Div divides two polinomials over the Finite Field, returning the result and the remainder
  63. func (pf PolynomialField) Div(a, b []*big.Int) ([]*big.Int, []*big.Int) {
  64. // https://en.wikipedia.org/wiki/Division_algorithm
  65. r := ArrayOfBigZeros(len(a) - len(b) + 1)
  66. rem := a
  67. for len(rem) >= len(b) {
  68. l := pf.F.Div(rem[len(rem)-1], b[len(b)-1])
  69. pos := len(rem) - len(b)
  70. r[pos] = l
  71. aux := ArrayOfBigZeros(pos)
  72. aux1 := append(aux, l)
  73. aux2 := pf.Sub(rem, pf.Mul(b, aux1))
  74. rem = aux2[:len(aux2)-1]
  75. }
  76. return r, rem
  77. }
  78. func max(a, b int) int {
  79. if a > b {
  80. return a
  81. }
  82. return b
  83. }
  84. // Add adds two polinomials over the Finite Field
  85. func (pf PolynomialField) Add(a, b []*big.Int) []*big.Int {
  86. r := ArrayOfBigZeros(max(len(a), len(b)))
  87. for i := 0; i < len(a); i++ {
  88. r[i] = pf.F.Add(r[i], a[i])
  89. }
  90. for i := 0; i < len(b); i++ {
  91. r[i] = pf.F.Add(r[i], b[i])
  92. }
  93. return r
  94. }
  95. // Sub subtracts two polinomials over the Finite Field
  96. func (pf PolynomialField) Sub(a, b []*big.Int) []*big.Int {
  97. r := ArrayOfBigZeros(max(len(a), len(b)))
  98. for i := 0; i < len(a); i++ {
  99. r[i] = pf.F.Add(r[i], a[i])
  100. }
  101. for i := 0; i < len(b); i++ {
  102. r[i] = pf.F.Sub(r[i], b[i])
  103. }
  104. return r
  105. }
  106. // Eval evaluates the polinomial over the Finite Field at the given value x
  107. func (pf PolynomialField) Eval(v []*big.Int, x *big.Int) *big.Int {
  108. r := big.NewInt(int64(0))
  109. for i := 0; i < len(v); i++ {
  110. xi := pf.F.Exp(x, big.NewInt(int64(i)))
  111. elem := pf.F.Mul(v[i], xi)
  112. r = pf.F.Add(r, elem)
  113. }
  114. return r
  115. }
  116. // NewPolZeroAt generates a new polynomial that has value zero at the given value
  117. func (pf PolynomialField) NewPolZeroAt(pointPos, totalPoints int, height *big.Int) []*big.Int {
  118. fac := 1
  119. for i := 1; i < totalPoints+1; i++ {
  120. if i != pointPos {
  121. fac = fac * (pointPos - i)
  122. }
  123. }
  124. facBig := big.NewInt(int64(fac))
  125. hf := pf.F.Div(height, facBig)
  126. r := []*big.Int{hf}
  127. for i := 1; i < totalPoints+1; i++ {
  128. if i != pointPos {
  129. ineg := big.NewInt(int64(-i))
  130. b1 := big.NewInt(int64(1))
  131. r = pf.Mul(r, []*big.Int{ineg, b1})
  132. }
  133. }
  134. return r
  135. }
  136. // LagrangeInterpolation performs the Lagrange Interpolation / Lagrange Polynomials operation
  137. func (pf PolynomialField) LagrangeInterpolation(v []*big.Int) []*big.Int {
  138. // https://en.wikipedia.org/wiki/Lagrange_polynomial
  139. var r []*big.Int
  140. for i := 0; i < len(v); i++ {
  141. r = pf.Add(r, pf.NewPolZeroAt(i+1, len(v), v[i]))
  142. }
  143. //
  144. return r
  145. }
  146. // R1CSToQAP converts the R1CS values to the QAP values
  147. func (pf PolynomialField) R1CSToQAP(a, b, c [][]*big.Int) ([][]*big.Int, [][]*big.Int, [][]*big.Int, []*big.Int) {
  148. aT := Transpose(a)
  149. bT := Transpose(b)
  150. cT := Transpose(c)
  151. fmt.Println(aT)
  152. fmt.Println(bT)
  153. fmt.Println(cT)
  154. var alphas [][]*big.Int
  155. for i := 0; i < len(aT); i++ {
  156. alphas = append(alphas, pf.LagrangeInterpolation(aT[i]))
  157. }
  158. var betas [][]*big.Int
  159. for i := 0; i < len(bT); i++ {
  160. betas = append(betas, pf.LagrangeInterpolation(bT[i]))
  161. }
  162. var gammas [][]*big.Int
  163. for i := 0; i < len(cT); i++ {
  164. gammas = append(gammas, pf.LagrangeInterpolation(cT[i]))
  165. }
  166. z := []*big.Int{big.NewInt(int64(1))}
  167. for i := 1; i < len(alphas)-1; i++ {
  168. z = pf.Mul(
  169. z,
  170. []*big.Int{
  171. pf.F.Neg(
  172. big.NewInt(int64(i))),
  173. big.NewInt(int64(1)),
  174. })
  175. }
  176. return alphas, betas, gammas, z
  177. }
  178. // CombinePolynomials combine the given polynomials arrays into one, also returns the P(x)
  179. func (pf PolynomialField) CombinePolynomials(r []*big.Int, ap, bp, cp [][]*big.Int) ([]*big.Int, []*big.Int, []*big.Int, []*big.Int) {
  180. var ax []*big.Int
  181. for i := 0; i < len(r); i++ {
  182. m := pf.Mul([]*big.Int{r[i]}, ap[i])
  183. ax = pf.Add(ax, m)
  184. }
  185. var bx []*big.Int
  186. for i := 0; i < len(r); i++ {
  187. m := pf.Mul([]*big.Int{r[i]}, bp[i])
  188. bx = pf.Add(bx, m)
  189. }
  190. var cx []*big.Int
  191. for i := 0; i < len(r); i++ {
  192. m := pf.Mul([]*big.Int{r[i]}, cp[i])
  193. cx = pf.Add(cx, m)
  194. }
  195. px := pf.Sub(pf.Mul(ax, bx), cx)
  196. return ax, bx, cx, px
  197. }
  198. // DivisorPolynomial returns the divisor polynomial given two polynomials
  199. func (pf PolynomialField) DivisorPolynomial(px, z []*big.Int) []*big.Int {
  200. quo, _ := pf.Div(px, z)
  201. return quo
  202. }