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
Kubuxu
ZenGround0
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
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Crate bls_signatures
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)
.