| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| | |
|
| | |
|
| |
|
|
| |
4.1 seconds -> 3.3 seconds on a test case
|
| |\
| |
| |
| | |
41da2fe Update copyright to 2022 for Hardfork files (Akrit)
|
| | |
| |
| |
| | |
Update Makefile and LICENSE
|
| |\ \
| | |
| | |
| | | |
4f08bcd refactor(bp+): save one inversion, use sc_muladd (Dusan Klinec)
|
| | |/ |
|
| |/ |
|
| | |
|
| |\
| |
| |
| | |
da9aa1f Copyright: Update to 2022 (mj-xmr)
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
It avoids dividing by 8 when deserializing a tx, which is a slow
operation, and multiplies by 8 when verifying and extracing the
amount, which is much faster as well as less frequent
|
| | | |
|
| | | |
|
| | | |
|
| | |
| |
| |
| | |
https://suyash67.github.io/homepage/assets/pdfs/bulletproofs_plus_audit_report_v1.1.pdf
|
| | | |
|
| |/ |
|
| |
|
|
| |
haven't been reduced by the field order
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
| |
There are quite a few variables in the code that are no longer
(or perhaps never were) in use. These were discovered by enabling
compiler warnings for unused variables and cleaning them up.
In most cases where the unused variables were the result
of a function call the call was left but the variable
assignment removed, unless it was obvious that it was
a simple getter with no side effects.
|
| |
|
|
|
|
| |
- rolling_median: tried to free uninitialized pointer in a constructor
- net_node.inl: erase-remove idiom was used incorrectly. remove_if doesn't actually remove elements, see http://cpp.sh/6fcjv
- bulletproofs.cc: call to sizeof() instead of vector.size(), luckily it only impacts performance and not code logic there
|
| |
|
|
|
| |
- index out of bounds when importing outputs
- accessing invalid CLSAG data
|
| |\
| |
| |
| | |
6a37da8 threadpool: guard against exceptions in jobs, and armour plating (moneromooo-monero)
|
| | |
| |
| |
| |
| | |
Those would, if uncaught, exit run and leave the waiter to wait
indefinitely for the number of active jobs to reach 0
|
| | |
| |
| |
| | |
also fix a an assert message refering t MLSAG
|
| | | |
|
| | | |
|
| | |
| |
| |
| | |
They are allowed from v12, and MLSAGs are rejected from v13.
|
| | | |
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This reduces the attack surface for data that can come from
malicious sources (exported output and key images, multisig
transactions...) since the monero serialization is already
exposed to the outside, and the boost lib we were using had
a few known crashers.
For interoperability, a new load-deprecated-formats wallet
setting is added (off by default). This allows loading boost
format data if there is no alternative. It will likely go
at some point, along with the ability to load those.
Notably, the peer lists file still uses the boost serialization
code, as the data it stores is define in epee, while the new
serialization code is in monero, and migrating it was fairly
hairy. Since this file is local and not obtained from anyone
else, the marginal risk is minimal, but it could be migrated
later if needed.
Some tests and tools also do, this will stay as is for now.
|
| |
|
|
| |
Update copyright year to 2020
|
| |\
| |
| |
| | |
613071f use memwipe on secret k/alpha values (moneromooo-monero)
|
| | |
| |
| |
| | |
Reported by UkoeHB_ and sarang
|
| |/ |
|
| |\
| |
| |
| | |
c61abf8 remove empty statements (shopglobal)
|
| | |
| |
| |
| | |
Cleaning up a little around the code base.
|
| |/ |
|
| |\
| |
| |
| |
| | |
45fd72b Updated paper references (SarangNoether)
277003f Minor prover simplification (SarangNoether)
|
| | | |
|
| | | |
|
| |/ |
|
| |
|
|
|
| |
The weight of the prunable data is deterministic from the
unpruned data, so it can be determined from a pruned tx
|
| |\
| |
| |
| | |
3a0451a MLSAG speedup and additional checks (SarangNoether)
|
| | | |
|
| |\ \
| |/
|/|
| |
| | |
25a7cfd add a few checks where it seems appropriate (moneromooo-monero)
1a66a86 remove unused code (moneromooo-monero)
|
| | | |
|