#.sponge #poseidon-hash #poseidon #prime-field #rescue

nightly rescue_poseidon

基于代数哈希函数的Sponge构造

4个版本

0.5.2 2024年8月6日
0.5.1 2024年7月31日
0.5.0 2024年7月5日
0.4.1 2024年7月5日

274加密学

Download history • Rust 包仓库 5624/week @ 2024-07-05 • Rust 包仓库 2209/week @ 2024-07-12 • Rust 包仓库 6021/week @ 2024-07-19 • Rust 包仓库 13041/week @ 2024-07-26 • Rust 包仓库 7834/week @ 2024-08-02 • Rust 包仓库 8470/week @ 2024-08-09 • Rust 包仓库 12912/week @ 2024-08-16 • Rust 包仓库

每月下载量 43,567
用于 13 个crate(2个直接使用)

MIT/Apache

210KB
5K SLoC

Rescue和Poseidon

概述

此仓库包含面向算术化哈希函数(Rescue、Poseidon、Rescue Prime)的实现,这些函数通过在素域上使用Sponge构造,适用于电路外和电路内的使用。每个代数哈希函数使用相同的Sponge构造,但具有不同的轮函数或置换函数。在约束系统中,设备是最优的,同时也支持bellman支持的不同的标量字段。

用法

添加依赖项

rescue_poseidon = 0.1
    use franklin_crypto::bellman::bn256::Fr;
    use franklin_crypto::bellman::Field;
    use rescue_poseidon::rescue_hash;

    const L: usize = 2;
    let input = [Fr::one(); L]; // dummy input

    // fixed length rescue hash
    let result = rescue_hash::<Bn256, L>(&input);
    assert_eq!(result.len(), 2);

更多示例可以在 examples 文件夹中找到。

测试

cargotest ----nocapture

基准测试和约束系统成本

cargobench ----nocapture

CPU:3.1 GHz Intel Core i5

hashes 1x 置换运行时间(μs) 1x 置换门数 轮数
Poseidon 13 166 8f + 33p
Rescue 680 266 44f
Rescue Prime 300 104 9f

参考文献

依赖项

~19MB
~358K SLoC