signature_bbs_plus 0.1.0

The Ockam BLS signature impementation.
Documentation

signature_bbs

crate docs license discuss

Ockam is a library for building devices that communicate securely, privately and trustfully with cloud services and other devices.

In order to support a variety of proving protocols, this crate implements the BBS+ signature scheme which can be used to generate zero-knowledge proofs about signed attributes and the signatures themselves.

The main Ockam has optional dependency on this crate.

Usage

Add this to your Cargo.toml:

[dependencies]
signature_bbs = "0.1.0"

Crate Features

[dependencies]
signature_bbs = { version = "0.1.0", default-features = false }

Please note that Cargo features are unioned across the entire dependency graph of a project. If any other crate you depend on has not opted out of signature_bbs default features, Cargo will build signature_bbs with the std feature enabled whether or not your direct dependency on signature_bbs has default-features = false.

License

This code is licensed under the terms of the Apache License 2.0.