4 releases (2 breaking)

0.4.0 Jan 17, 2023
0.4.0-alpha Oct 21, 2022
0.3.0 Jun 6, 2021
0.2.0 Mar 24, 2021

#38 in Cryptography

Download history 101064/week @ 2023-11-21 111781/week @ 2023-11-28 111548/week @ 2023-12-05 107387/week @ 2023-12-12 93239/week @ 2023-12-19 57414/week @ 2023-12-26 105287/week @ 2024-01-02 129168/week @ 2024-01-09 145770/week @ 2024-01-16 146741/week @ 2024-01-23 149234/week @ 2024-01-30 146188/week @ 2024-02-06 142159/week @ 2024-02-13 154579/week @ 2024-02-20 144376/week @ 2024-02-27 115464/week @ 2024-03-05

584,810 downloads per month
Used in 1,639 crates (152 directly)

MIT/Apache

54KB
901 lines

arkworks::std

The arkworks ecosystem consists of Rust libraries for designing and working with zero knowledge succinct non-interactive arguments (zkSNARKs). This repository contains ark-std, a library that serves as a compatibility layer for no_std use cases, and also contains useful methods and types used by the rest of the arkworks ecosystem.

This library is released under the MIT License and the Apache v2 License (see License).

WARNING: This is an academic proof-of-concept prototype, and in particular has not received careful code review. This implementation is NOT ready for production use.

Build guide

The library compiles on the stable toolchain of the Rust compiler. To install the latest version of Rust, first install rustup by following the instructions here, or via your platform's package manager. Once rustup is installed, install the Rust toolchain by invoking:

rustup install stable

After that, use cargo, the standard Rust build tool, to build the libraries:

git clone https://github.com/arkworks-rs/utils.git
cd utils
cargo build --release

Tests

This library comes with comprehensive unit and integration tests for each of the provided crates. Run the tests with:

cargo test --all

Benchmarks

To run the benchmarks, install the nightly Rust toolchain, via rustup install nightly, and then run the following command:

cargo +nightly bench

License

The crates in this repository are licensed under either of the following licenses, at your discretion.

Unless you explicitly state otherwise, any contribution submitted for inclusion in this library by you shall be dual licensed as above (as defined in the Apache v2 License), without any additional terms or conditions.

Acknowledgements

This work was supported by: a Google Faculty Award; the National Science Foundation; the UC Berkeley Center for Long-Term Cybersecurity; and donations from the Ethereum Foundation, the Interchain Foundation, and Qtum.

An earlier version of this library was developed as part of the paper "ZEXE: Enabling Decentralized Private Computation".

Dependencies

~0.5–10MB
~72K SLoC