UNPKG

@chainsafe/bls

Version:

Implementation of bls signature verification for ethereum 2.0

6 lines (5 loc) 239 B
export const SECRET_KEY_LENGTH = 32; export const PUBLIC_KEY_LENGTH_COMPRESSED = 48; export const PUBLIC_KEY_LENGTH_UNCOMPRESSED = 48 * 2; export const SIGNATURE_LENGTH_COMPRESSED = 96; export const SIGNATURE_LENGTH_UNCOMPRESSED = 96 * 2;