mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-23 23:04:53 +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;
|