fix confusing directory name

This commit is contained in:
Chih Cheng Liang 2020-02-05 13:04:51 +08:00 committed by Danny Ryan
parent 03f53e9928
commit f5723cdd93
No known key found for this signature in database
GPG Key ID: 2765A792E42CE07A
1 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ def case05_aggregate_verify():
sigs.append(sig) sigs.append(sig)
aggregate_signature = bls.G2ProofOfPossession.Aggregate(sigs) aggregate_signature = bls.G2ProofOfPossession.Aggregate(sigs)
yield f'fast_aggregate_verify_valid', { yield f'aggregate_verify_valid', {
'input': { 'input': {
'pairs': pairs, 'pairs': pairs,
'signature': encode_hex(aggregate_signature), 'signature': encode_hex(aggregate_signature),
@ -180,7 +180,7 @@ def case05_aggregate_verify():
} }
tampered_signature = aggregate_signature[:4] + b'\xff\xff\xff\xff' tampered_signature = aggregate_signature[:4] + b'\xff\xff\xff\xff'
yield f'fast_aggregate_verify_tampered_signature', { yield f'aggregate_verify_tampered_signature', {
'input': { 'input': {
'pairs': pairs, 'pairs': pairs,
'signature': encode_hex(tampered_signature), 'signature': encode_hex(tampered_signature),