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.

227 lines
5.8 KiB

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