Marlin中的Polynomial commitment scheme

1. 引言

前序博客有:

相关代码实现有:

2. arkworks实现中marlin/marlin_pcsonic_pc对比

[arkworks实现]https://github.com/arkworks-rs/poly-commit()中marlin/marlin_pcsonic_pc,二者都是基于KZG10的变种。主要不同在于:

  • 1)High level:
    二者处理degree bounds的方式不同:
    • marlin/marlin_pc:使用shift powers only in g1,需要2个commitments来enforce degree bounds。
    • sonic_pc:使用shift powers in G1 and G2,仅需一个commitment来enforce degree bounds。
  • 2)Setup阶段:
    • marlin/marlin_pc:shift powers in Marlin are in G1, and are shared with the “non-shift” powers。
    • sonic_pc:需要额外计算some G2 elements for shift powers:

      (

      1

      /

      β

      )

      i

      H

      (1/{\beta})^i H

      (1/β)iH。这将导致更长的verifying key,因为shift powers in sonic_pc are in G2。

  • 3)Commit阶段:
    • 当没有degree bound时,二者完全一样。
    • 当有degree bound时,marlin/marlin_pc要更昂贵一点,因为其需要其需要额外的commitment来commit to the shifted polynomial。
  • 4)Open阶段:
    • 当没有degree bound时,二者完全一样。
    • 当有degree bound时,marlin/marlin_pc要更昂贵一点,因为其需要更多的scalar field computations。
  • 5)Check阶段:
    • marlin/marlin_pc:由于Marlin仅建档调整了shifted polynomial的commitment,因此开销很小。marlin/marlin_pc中会check a pairing equation with two pairing operations。
    • sonic_pc:要更昂贵,因其需要check check a pairing equation with three pairing operations。当没有degree bound时,可reduce为a pairing equation with two pairing operations。

版权声明:本文为CSDN博主「mutourend」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/mutourend/article/details/121948804

mutourend

我还没有学会写个人说明!

暂无评论

发表评论

相关推荐

单目3D目标检测调研

单目3D目标检测调研 一、 简介 现有的单目3D目标检测方案主要方案主要分为两类,分别为基于图片的方法和基于伪雷达点云的方法。   基于图片的方法一般通过2D-3D之间的几何约束来学习,包括目标形状信息&#xff0