14 releases

0.0.22 Nov 5, 2023
0.0.21 Oct 5, 2023
0.0.20 Sep 28, 2023
0.0.12 Aug 22, 2023
0.0.11 Jul 31, 2023

#2879 in Magic Beans

Download history 33/week @ 2024-01-06 39/week @ 2024-01-13 23/week @ 2024-01-20 12/week @ 2024-01-27 20/week @ 2024-02-03 32/week @ 2024-02-10 51/week @ 2024-02-17 45/week @ 2024-02-24 46/week @ 2024-03-02 62/week @ 2024-03-09 51/week @ 2024-03-16 47/week @ 2024-03-23 74/week @ 2024-03-30 42/week @ 2024-04-06 114/week @ 2024-04-13 73/week @ 2024-04-20

306 downloads per month
Used in 8 crates

Apache-2.0

180KB
4.5K SLoC

ZkStd

CI crates.io badge Documentation GitHub license codecov dependency status

This crate provides basic cryptographic implementation as in Field, Curve and Pairing, Fft, Kzg, and also supports fully no_std and parity-scale-codec.

Design

Cryptography libraries need to be applied optimization easily because computation cost affects users waiting time and on-chain gas cost. We design this library following two perspectives.

  • The simplicity to replace with the latest algorithm
  • The brevity of code by avoiding duplication

We divide arithmetic operation and interface. Arithmetic operation is concrete logic as in elliptic curve addition and so on, and the interface is trait cryptography primitive supports. And we combine them with macro. With this design, we can keep the finite field and elliptic curve implementation simple.

Directory Structure

  • arithmetic: the arithmetic operation of limbs, points and bit operation.
  • behave: the interface of cryptography components as in Fft Field, Pairing Field and so on.
  • dress: the macro used for implementation and in charge of combing arithmetic and behave together.

Dependencies

~4MB
~87K SLoC