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。
Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐