aboutsummaryrefslogtreecommitdiff
path: root/tests/performance_tests
Commit message (Collapse)AuthorAgeFilesLines
...
* Pippenger multiexpmoneromooo-monero2018-09-112-1/+146
| | | | Based on sarang's python code
* performance_tests: document the tested bulletproof layoutsmoneromooo-monero2018-09-111-8/+8
|
* Bulletproof aggregated verification and testsmoneromooo-monero2018-09-111-1/+1
| | | | Also constrains bulletproofs to simple rct, for simplicity
* performance_tests: add signature generation/verificationmoneromooo-monero2018-09-113-0/+72
|
* bulletproofs: add aggregated verificationmoneromooo-monero2018-09-113-0/+51
| | | | Ported from sarang's java code
* make straus cached mode thread safe, and add tests for itmoneromooo-monero2018-09-112-1/+13
|
* bulletproofs: add multi output bulletproofs to rctmoneromooo-monero2018-09-111-1/+1
|
* performance_tests: add tx checking tests with more than 2 outputsmoneromooo-monero2018-09-112-11/+22
|
* performance_tests: add a --verbose flag, and default to tersemoneromooo-monero2018-09-112-102/+116
|
* add Straus multiexpmoneromooo-monero2018-09-113-0/+97
|
* performance_tests: add crypto opsmoneromooo-monero2018-09-113-0/+133
|
* performance_tests: add bulletproofsmoneromooo-monero2018-09-113-0/+73
|
* performance_tests: add RingCT MLSAG gen/ver testsmoneromooo-monero2018-09-111-0/+10
|
* performance_tests: add (Borromean) range proofsmoneromooo-monero2018-09-113-0/+68
|
* performance_tests: don't override log level to 0moneromooo-monero2018-09-111-1/+0
|
* add and use constant time 32 byte equality functionmoneromooo-monero2018-08-232-0/+78
|
* core_tests: add --filter to select which tests to runmoneromooo-monero2018-07-071-20/+1
|
* performance_tests: fix subaddress expansion test not expandingmoneromooo-monero2018-03-271-1/+1
|
* keypair::generate: always require hw::device to avoid possible mistakestoffu2018-03-141-1/+1
|
* Code modifications to integrate Ledger HW device into monero-wallet-cli.cslashm2018-03-043-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 #3226Riccardo Spagni2018-02-161-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 parammoneromooo-monero2018-02-021-1/+1
| | | | | | | | Coverity 182572
* | Fix coverity issues in performance_tests/main.cpph9087141242018-02-071-0/+2
|/
* Merge pull request #3185Riccardo Spagni2018-01-271-8/+8
|\ | | | | | | fccd1df1 performance_tests: fix build after merging two conflicting patches (moneromooo-monero)
| * performance_tests: fix build after merging two conflicting patchesmoneromooo-monero2018-01-261-8/+8
| |
* | Readd copyright starting datexmr-eric2018-01-262-2/+2
| |
* | Update 2018 copyrightxmr-eric2018-01-2620-20/+20
|/
* Merge pull request #3064Riccardo Spagni2018-01-252-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 runmoneromooo-monero2018-01-042-52/+97
| | | | | | | | Removes a good bit of annoyance running those
* | Merge pull request #3042Riccardo Spagni2018-01-252-0/+97
|\ \ | |/ |/| | | ed215d34 performance_tests: add RingCT MLSAG gen/ver tests (moneromooo-monero)
| * performance_tests: add RingCT MLSAG gen/ver testsmoneromooo-monero2017-12-312-0/+97
| |
* | performance_tests: add a test for subaddress expansionmoneromooo-monero2017-12-183-0/+70
|/
* move includes around to lessen overall loadmoneromooo-monero2017-12-161-0/+1
|
* add bulletproofs from v7 on testnetmoneromooo-monero2017-12-081-1/+1
|
* make this build on SunOS/SolarisPavel Maryanov2017-11-141-2/+2
|
* Merge pull request #2696Riccardo Spagni2017-11-141-0/+2
|\ | | | | | | 937e7f8a Initialize openssl on startup (moneromooo-monero)
| * Initialize openssl on startupmoneromooo-monero2017-10-211-0/+2
| |
* | core_tests: fix for subaddress patchkenshi842017-10-171-1/+1
| |
* | performance_tests: add master spend pubkey to subaddress hashtablekenshi842017-10-161-0/+1
|/
* performance_tests: fix build after subaddress patchmoneromooo-monero2017-10-151-1/+4
|
* Subaddresseskenshi842017-10-076-7/+18
|
* Merge pull request #2518Riccardo Spagni2017-10-022-2/+2
|\ | | | | | | 6a0fb301 performance_tests: adjust some iterations down a bit (moneromooo-monero)
| * performance_tests: adjust some iterations down a bitmoneromooo-monero2017-09-242-2/+2
| |
* | performance_tests: add a test for is_out_to_acc_precompmoneromooo-monero2017-09-252-0/+23
|/
* changed crypto to cncrypto so it generated libcncryptoGentian2017-05-231-1/+1
| | | | fix a cmakelist
* update copyright year, fix occasional lack of newline at line endRiccardo Spagni2017-02-2116-16/+16
|
* tests: fixup include paths after cryptonote_core splitmoneromooo-monero2017-02-121-1/+1
|
* Merge pull request #1706Riccardo Spagni2017-02-124-4/+132
|\ | | | | | | | | | | 7403e56f performance_tests: report small time per call in microseconds (moneromooo-monero) cadada2d performance_tests: add tests for sc_reduce32 and cn_fast_hash (moneromooo-monero) 962c72b6 performance_tests: initialize logging at startup (moneromooo-monero)
| * performance_tests: report small time per call in microsecondsmoneromooo-monero2017-02-101-3/+13
| | | | | | | | This is to not report quick operations as 0 milliseconds
| * performance_tests: add tests for sc_reduce32 and cn_fast_hashmoneromooo-monero2017-02-103-1/+116
| |