2
0
mirror of https://github.com/status-im/eth2.0-specs.git synced 2025-02-17 04:56:24 +00:00
2019-04-23 12:59:58 -05:00

561 B

Test format: BLS sign message

Message signing with BLS should produce a signature.

Test case format

input:
  privkey: bytes32 -- the private key used for signing
  message: bytes32 -- input message to sign (a hash)
  domain: bytes    -- BLS domain
output: bytes96    -- expected signature

All byte(s) fields are encoded as strings, hexadecimal encoding, prefixed with 0x.

Condition

The sign_msg handler should sign the given message, with domain, using the given privkey, and the result should match the expected output.