zkryptium

Crates.iozkryptium
lib.rszkryptium
version0.3.2
sourcesrc
created_at2023-10-24 15:47:03.360474
updated_at2024-12-16 13:39:20.616341
descriptionRust crypto library for zero-knowledge proofs
homepage
repositoryhttps://github.com/Cybersecurity-LINKS/zkryptium
max_upload_size
id1012525
size608,317
(AleCla97)

documentation

README

ZKryptium

License

Description

ZKryptium library provides an implementation of:

This library enables the creation of zero-knowledge proofs, exposing cryptographic primitives facilitating the development of a Verifiable Credentials (VCs) system capable of handling both Anonymous Credentials and Selective Disclosure Credentials.

WARNING: for CL2003 use a version from v0.3.2 onwards that uses a new secure cryptographic implementation of the Pseudo Random Number Generator ThreadRng

Getting Started

Requirements

Usage

BBS+:
[dependencies]
zkryptium = { version = "0.3.2", default-features = false, features = ["bbsplus"] }
CL2003:
[dependencies]
zkryptium = { version = "0.3.2", default-features = false, features = ["cl03"] }

Examples

Take a look at the examples.

You can run the examples based on the BBS+ Signature Scheme with:

cargo run --example bbsplus <ciphersuite>
cargo run --example bbsplus_blind <ciphersuite>
Available Ciphersuites:
  • BLS12-381-SHA-256
  • BLS12-381-SHAKE-256

You can run the examples based on the CL2003 Signature Scheme with:

cargo run --features="cl03" --example cl03 <ciphersuite>
cargo run --features="cl03" --example cl03_multiattr <ciphersuite>
Available Ciphersuites:
  • CL1024-SHA-256

Test

To test the library you can launch the test vectors with:

cargo test

Adopted by

We’re proud to be adopted by companies around the world. Here are a few of the organizations leveraging our library:

Commit count: 196

cargo fmt