We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got this error when using python 3.9:
$ ./generate_keys.py Traceback (most recent call last): File "/home/hugol/itags/FindMy/./generate_keys.py", line 28, in <module> priv_bytes = int.to_bytes(priv, 28) TypeError: to_bytes() missing required argument 'byteorder' (pos 2)
A fix seems to be: L28 priv_bytes = priv.to_bytes(28,'big') L29 adv_bytes = adv.to_bytes(28,'big')
The text was updated successfully, but these errors were encountered:
be explicit about endiannes in int.{to,from}_bytes (#41 and #42)
113ebf4
No branches or pull requests
I got this error when using python 3.9:
A fix seems to be:
L28 priv_bytes = priv.to_bytes(28,'big')
L29 adv_bytes = adv.to_bytes(28,'big')
The text was updated successfully, but these errors were encountered: