Skip to content

Commit

Permalink
Merge pull request #79 from LedgerHQ/fix_bls12_381_support
Browse files Browse the repository at this point in the history
Fix bls12 381 support
  • Loading branch information
Nicolas Bacca committed Oct 30, 2020
2 parents 5fd16fa + 912b7e8 commit bb7aead
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ledgerblue/loadApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def string_to_bytes(x):
elif curve == 'ed25519':
curveMask |= 0x04
elif curve == 'bls12381g1':
curveMask |= 0x08
curveMask |= 0x10
else:
raise Exception("Unknown curve " + curve)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
here = dirname(__file__)
setup(
name='ledgerblue',
version='0.1.33',
version='0.1.34',
author='Ledger',
author_email='hello@ledger.fr',
description='Python library to communicate with Ledger Blue/Nano S',
Expand Down

0 comments on commit bb7aead

Please sign in to comment.