Docs.rs
bls-signatures-0.15.0
bls-signatures 0.15.0
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
dignifiedquire
vmx
cryptonemo
Dependencies
bls12_381 ^0.8.0
normal
optional
blst ^0.3.10
normal
optional
blstrs ^0.7.0
normal
optional
ff ^0.13
normal
group ^0.13
normal
hkdf ^0.11.0
normal
optional
pairing ^0.23.0
normal
rand_core ^0.6.0
normal
rayon ^1
normal
optional
sha2 ^0.9
normal
optional
subtle ^2.2.1
normal
thiserror ^1.0
normal
base64 ^0.13.0
dev
base64-serde ^0.6.1
dev
rand ^0.8
dev
rand_chacha ^0.3.1
dev
serde ^1.0.106
dev
serde_json ^1.0.52
dev
Versions
30%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
bls_
signatures
0.15.0
All Items
Crate Items
Structs
Enums
Traits
Functions
Crate
bls_signatures
Copy item path
Source
Structs
§
Private
Key
Public
Key
Signature
Enums
§
Error
Traits
§
Serialize
Functions
§
aggregate
Aggregate signatures by multiplying them together. Calculated by
signature = \sum_{i = 0}^n signature_i
.
hash
Hash the given message, as used in the signature.
verify
Verifies that the signature is the actual aggregated signature of hashes - pubkeys. Calculated by
e(g1, signature) == \prod_{i = 0}^n e(pk_i, hash_i)
.
verify_
messages
Verifies that the signature is the actual aggregated signature of messages - pubkeys. Calculated by
e(g1, signature) == \prod_{i = 0}^n e(pk_i, hash_i)
.