| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | performance_tests: add tests for new Cryptonight variants | moneromooo-monero | 2019-02-18 | 2 | -10/+10 |
| | | |||||
| * | add a bulletproof version, new bulletproof type, and rct config | moneromooo-monero | 2019-02-12 | 3 | -23/+25 |
| | | | | | This makes it easier to modify the bulletproof format | ||||
| * | performance_test: fix bad last argument calling add_arg | moneromooo-monero | 2018-09-27 | 1 | -4/+4 |
| | | | | | Coverity 182572 | ||||
| * | bulletproofs: speed up the latest changes a bit | moneromooo-monero | 2018-09-11 | 2 | -0/+6 |
| | | |||||
| * | performance_tests: add padded bulletproof construction | moneromooo-monero | 2018-09-11 | 2 | -2/+14 |
| | | |||||
| * | v8: per byte fee, pad bulletproofs, fixed 11 ring size | moneromooo-monero | 2018-09-11 | 2 | -17/+20 |
| | | |||||
| * | bulletproofs: reject points not in the main subgroup | moneromooo-monero | 2018-09-11 | 2 | -0/+3 |
| | | |||||
| * | Add Pippenger cache and limit Straus cache size | moneromooo-monero | 2018-09-11 | 2 | -9/+135 |
| | | |||||
| * | performance_tests: add stats and loop count multiplier options | moneromooo-monero | 2018-09-11 | 2 | -291/+383 |
| | | | | | Stats are: min, median, standard deviation | ||||
| * | performance_tests: add aggregated bulletproof tx verification | moneromooo-monero | 2018-09-11 | 2 | -0/+81 |
| | | |||||
| * | Pippenger multiexp | moneromooo-monero | 2018-09-11 | 2 | -1/+146 |
| | | | | | Based on sarang's python code | ||||
| * | performance_tests: document the tested bulletproof layouts | moneromooo-monero | 2018-09-11 | 1 | -8/+8 |
| | | |||||
| * | Bulletproof aggregated verification and tests | moneromooo-monero | 2018-09-11 | 1 | -1/+1 |
| | | | | | Also constrains bulletproofs to simple rct, for simplicity | ||||
| * | performance_tests: add signature generation/verification | moneromooo-monero | 2018-09-11 | 3 | -0/+72 |
| | | |||||
| * | bulletproofs: add aggregated verification | moneromooo-monero | 2018-09-11 | 3 | -0/+51 |
| | | | | | Ported from sarang's java code | ||||
| * | make straus cached mode thread safe, and add tests for it | moneromooo-monero | 2018-09-11 | 2 | -1/+13 |
| | | |||||
| * | bulletproofs: add multi output bulletproofs to rct | moneromooo-monero | 2018-09-11 | 1 | -1/+1 |
| | | |||||
| * | performance_tests: add tx checking tests with more than 2 outputs | moneromooo-monero | 2018-09-11 | 2 | -11/+22 |
| | | |||||
| * | performance_tests: add a --verbose flag, and default to terse | moneromooo-monero | 2018-09-11 | 2 | -102/+116 |
| | | |||||
| * | add Straus multiexp | moneromooo-monero | 2018-09-11 | 3 | -0/+97 |
| | | |||||
| * | performance_tests: add crypto ops | moneromooo-monero | 2018-09-11 | 3 | -0/+133 |
| | | |||||
| * | performance_tests: add bulletproofs | moneromooo-monero | 2018-09-11 | 3 | -0/+73 |
| | | |||||
| * | performance_tests: add RingCT MLSAG gen/ver tests | moneromooo-monero | 2018-09-11 | 1 | -0/+10 |
| | | |||||
| * | performance_tests: add (Borromean) range proofs | moneromooo-monero | 2018-09-11 | 3 | -0/+68 |
| | | |||||
| * | performance_tests: don't override log level to 0 | moneromooo-monero | 2018-09-11 | 1 | -1/+0 |
| | | |||||
| * | add and use constant time 32 byte equality function | moneromooo-monero | 2018-08-23 | 2 | -0/+78 |
| | | |||||
| * | core_tests: add --filter to select which tests to run | moneromooo-monero | 2018-07-07 | 1 | -20/+1 |
| | | |||||
| * | performance_tests: fix subaddress expansion test not expanding | moneromooo-monero | 2018-03-27 | 1 | -1/+1 |
| | | |||||
| * | keypair::generate: always require hw::device to avoid possible mistake | stoffu | 2018-03-14 | 1 | -1/+1 |
| | | |||||
| * | Code modifications to integrate Ledger HW device into monero-wallet-cli. | cslashm | 2018-03-04 | 3 | -4/+5 |
| | | | | | | | | | | | | | | | | | | | | The basic approach it to delegate all sensitive data (master key, secret ephemeral key, key derivation, ....) and related operations to the device. As device has low memory, it does not keep itself the values (except for view/spend keys) but once computed there are encrypted (with AES are equivalent) and return back to monero-wallet-cli. When they need to be manipulated by the device, they are decrypted on receive. Moreover, using the client for storing the value in encrypted form limits the modification in the client code. Those values are transfered from one C-structure to another one as previously. The code modification has been done with the wishes to be open to any other hardware wallet. To achieve that a C++ class hw::Device has been introduced. Two initial implementations are provided: the "default", which remaps all calls to initial Monero code, and the "Ledger", which delegates all calls to Ledger device. | ||||
| * | Merge pull request #3226 | Riccardo Spagni | 2018-02-16 | 1 | -1/+1 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e4646379 keccak: fix mdlen bounds sanity checking (moneromooo-monero) 2e3e90ac pass large parameters by const ref, not value (moneromooo-monero) 61defd89 blockchain: sanity check number of precomputed hash of hash blocks (moneromooo-monero) 9af6b2d1 ringct: fix infinite loop in unused h2b function (moneromooo-monero) 8cea8d0c simplewallet: double check a new multisig wallet is multisig (moneromooo-monero) 9b98a6ac threadpool: catch exceptions in dtor, to avoid terminate (moneromooo-monero) 24803ed9 blockchain_export: fix buffer overflow in exporter (moneromooo-monero) f3f7da62 perf_timer: rewrite to make it clear there is no division by zero (moneromooo-monero) c6ea3df0 performance_tests: remove add_arg call stray extra param (moneromooo-monero) fa6b4566 fuzz_tests: fix an uninitialized var in setup (moneromooo-monero) 03887f11 keccak: fix sanity check bounds test (moneromooo-monero) ad11db91 blockchain_db: initialize m_open in base class ctor (moneromooo-monero) bece67f9 miner: restore std::cout precision after modification (moneromooo-monero) 1aabd14c db_lmdb: check hard fork info drop succeeded (moneromooo-monero) | ||||
| | * | performance_tests: remove add_arg call stray extra param | moneromooo-monero | 2018-02-02 | 1 | -1/+1 |
| | | | | | | | | | Coverity 182572 | ||||
| * | | Fix coverity issues in performance_tests/main.cpp | h908714124 | 2018-02-07 | 1 | -0/+2 |
| |/ | |||||
| * | Merge pull request #3185 | Riccardo Spagni | 2018-01-27 | 1 | -8/+8 |
| |\ | | | | | | | fccd1df1 performance_tests: fix build after merging two conflicting patches (moneromooo-monero) | ||||
| | * | performance_tests: fix build after merging two conflicting patches | moneromooo-monero | 2018-01-26 | 1 | -8/+8 |
| | | | |||||
| * | | Readd copyright starting date | xmr-eric | 2018-01-26 | 2 | -2/+2 |
| | | | |||||
| * | | Update 2018 copyright | xmr-eric | 2018-01-26 | 20 | -20/+20 |
| |/ | |||||
| * | Merge pull request #3064 | Riccardo Spagni | 2018-01-25 | 2 | -52/+97 |
| |\ | | | | | | | 62c45c0d performance_tests: add a --filter option to select what to run (moneromooo-monero) | ||||
| | * | performance_tests: add a --filter option to select what to run | moneromooo-monero | 2018-01-04 | 2 | -52/+97 |
| | | | | | | | | | Removes a good bit of annoyance running those | ||||
| * | | Merge pull request #3042 | Riccardo Spagni | 2018-01-25 | 2 | -0/+97 |
| |\ \ | |/ |/| | | | ed215d34 performance_tests: add RingCT MLSAG gen/ver tests (moneromooo-monero) | ||||
| | * | performance_tests: add RingCT MLSAG gen/ver tests | moneromooo-monero | 2017-12-31 | 2 | -0/+97 |
| | | | |||||
| * | | performance_tests: add a test for subaddress expansion | moneromooo-monero | 2017-12-18 | 3 | -0/+70 |
| |/ | |||||
| * | move includes around to lessen overall load | moneromooo-monero | 2017-12-16 | 1 | -0/+1 |
| | | |||||
| * | add bulletproofs from v7 on testnet | moneromooo-monero | 2017-12-08 | 1 | -1/+1 |
| | | |||||
| * | make this build on SunOS/Solaris | Pavel Maryanov | 2017-11-14 | 1 | -2/+2 |
| | | |||||
| * | Merge pull request #2696 | Riccardo Spagni | 2017-11-14 | 1 | -0/+2 |
| |\ | | | | | | | 937e7f8a Initialize openssl on startup (moneromooo-monero) | ||||
| | * | Initialize openssl on startup | moneromooo-monero | 2017-10-21 | 1 | -0/+2 |
| | | | |||||
| * | | core_tests: fix for subaddress patch | kenshi84 | 2017-10-17 | 1 | -1/+1 |
| | | | |||||
| * | | performance_tests: add master spend pubkey to subaddress hashtable | kenshi84 | 2017-10-16 | 1 | -0/+1 |
| |/ | |||||
| * | performance_tests: fix build after subaddress patch | moneromooo-monero | 2017-10-15 | 1 | -1/+4 |
| | | |||||
