Crate bls_signatures

source ·

Structs

Enums

Traits

Functions

  • Aggregate signatures by multiplying them together. Calculated by signature = \sum_{i = 0}^n signature_i.
  • Hash the given message, as used in the signature.
  • 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).
  • 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).