-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
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
How do I write the data to the "data.json" file correctly? #3
Comments
Is Z is the secret ephemeral internal nonce of the ECDSA ? The JSON format is documented in the README, and in the Python master file. You can also see the example provided, which build a JSON data file from an external different format. The JSON format is the following : All data are provided as integers : r, s, kp, pubx, puby, n_bits, ... The message can be provided as a unique message (will be hashed) for all the signatures, as a byte array format. Or as a hash (already hashed) for each signatures with {"hash": hashValue, "r": intR, "s": intS, "kp": leakednoncepart } for each signature. Note that if you know a single signature with a full nonce, the Lattice ECDSA Attack software is not designed for that. In this case, all you have to do is to compute This software is designed to recover the private key from a hundreds of signatures when only the partial nonce is known (first bits, or last bits). |
не проще просто поставить Хэш Txт 67016bf36253008807a7ef6b9f7abbb6bdf8213343cac259689790f2e18eb13f |
Which method are you using to install fpylll ? We recommend to install it using aptitude, or any distribution package manager. Any other way to install fpylll, especially manually from source, is so painful and hard that we don't recommend doing so. Using the package manager such as apt is so much reliable as it provides binaries and configuration. |
I want to understand and learn how can I correctly write data to file "data.json"?
How do I write the data to the "data.json" file correctly?
The text was updated successfully, but these errors were encountered: