Efficient NIZK Arguments via Parallel Verification of Benes Networks学习笔记

1. 背景知识

Lipmaa 2014年论文《Efficient NIZK Arguments via Parallel Verification of Benes Networks》,提出了:

Groth 2010年论文 Short Pairing-based Non-interactive Zero-Knowledge Arguments 中提出的CIRCUITSAT argument采用模块化的方式,由一些basic argument——少于10个的basic Hadamard product和permutation argument组成:

  • Hadamard product:Given three committed vectors, one of them is an entry-wise product of the other two。
  • permutation argument:Given two comitted vectors and a public permutation π \pi ,the coefficients of one vector are π \pi -permuted coefficients of the second vector。【注意:其中的permutation为public的,对verifier亦为公开的。】

存在的问题是:

  • 以上Hadamard product和permutation argument 需要的CRS长度均为vector dimension n n 的平方。
  • 以上Hadamard product和permutation argument Prover的computation (in exponentiations)也均为vector dimension n n 的平方。

Almost Optimal Short Adaptive Non-Interactive Zero KnowledgeEfficient Modular NIZK Arguments from Shift and Product 的基础上,借助Benes Networks to combine Θ ( log n ) \Theta(\log n) product and shift arguments。

猜你喜欢

转载自blog.csdn.net/mutourend/article/details/106056637