mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-21 13:54:44 +00:00
11 lines
338 B
Rust
11 lines
338 B
Rust
extern crate bls_aggregates;
|
|
|
|
pub use self::bls_aggregates::AggregateSignature;
|
|
pub use self::bls_aggregates::AggregatePublicKey;
|
|
pub use self::bls_aggregates::Signature;
|
|
pub use self::bls_aggregates::Keypair;
|
|
pub use self::bls_aggregates::PublicKey;
|
|
pub use self::bls_aggregates::SecretKey;
|
|
|
|
pub const BLS_AGG_SIG_BYTE_SIZE: usize = 97;
|