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
Hi, I noticed that in the code/test_rpsss.py it has following line
code/test_rpsss.py
print("size of signature:", len(sig), "bytes, or ", len(sig) / (2**13), "kB")
Which outputs
size of signature: 1309136 bytes, or 159.806640625 kB
Should it be divided by 2**10 because sig is an array of bytes? If so, the signature sizes in rescue-prime.md and faster.md would need to be updated.
2**10
sig
rescue-prime.md
faster.md
Besides, thanks for the great tutorial!
The text was updated successfully, but these errors were encountered:
My guess is that at some point I thought I was dealing with bits, in which case the conversion factor is 2 13 .
Sorry, something went wrong.
No branches or pull requests
Hi, I noticed that in the
code/test_rpsss.py
it has following lineWhich outputs
Should it be divided by
2**10
becausesig
is an array of bytes? If so, the signature sizes inrescue-prime.md
andfaster.md
would need to be updated.Besides, thanks for the great tutorial!
The text was updated successfully, but these errors were encountered: