Skip to content

Commit

Permalink
AggregateVerify accepts publc keys and messages as separate parameter…
Browse files Browse the repository at this point in the history
…s - aligning README with it.
  • Loading branch information
Weiwu Zhang committed Dec 29, 2020
1 parent 3f644b4 commit fbcc083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -61,7 +61,7 @@ signatures = [bls_pop.Sign(key, message) for key, message in zip(private_keys, m
agg_sig = bls_pop.Aggregate(signatures)

# Verify aggregate signature with different messages
assert bls_pop.AggregateVerify(zip(public_keys, messages), agg_sig)
assert bls_pop.AggregateVerify(public_keys, messages, agg_sig)
```

## Developer Setup
Expand Down

0 comments on commit fbcc083

Please sign in to comment.