aboutsummaryrefslogtreecommitdiff
path: root/src (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2019-02-20bump version, update readme to reflect, update checkpointsRiccardo Spagni2-2/+3
2019-02-20update quick sync checkpoints and hashRiccardo Spagni2-1/+1
2019-02-20wallet: fix payment ID decryption for construction dataDusan Klinec1-7/+6
2019-02-19blockchain: remove buggy long term block weight cachemoneromooo-monero2-76/+36
It seems to be buggy on reorgs, and prevents the use of a blockchain with two nodes. We'll speed this up again if/when the need arises.
2019-02-18blockchain: fix block template creation racemoneromooo-monero1-5/+5
If two create_block_template are called at nearly the same time, and a block is added at nearly the same time, this could happen: - the blockchain top block is B0 - thread 1 enters create_block_template, takes blockchain lock - thread 1 creates a fresh block referencing prev block B0 - thread 1 releases blockchain lock - thread 0 adds a new block - thread 0 enters create_block_template - thread 0 updates block template - thread 1 takes txpool lock and continues creating block template - thread 1 overwrites block template with previous data
2019-02-18tests: add a CNv4 JIT testmoneromooo-monero1-7/+8
2019-02-18blockchain: fix long term weight addition on pop/initmoneromooo-monero1-2/+4
2019-02-18crypto: plug CNv4 JIT into cn_slow_hashmoneromooo-monero2-3/+100
Enabled by setting the MONERO_USE_CNV4_JIT env var to 1
2019-02-18crypto: clear cache after generating random programmoneromooo-monero1-0/+3
2019-02-18rpc: fix wrongly formatted JSON for pruned txstoffu1-19/+12
Fix for #4399. Also unifies code for serializing pruned tx to binary/json into one. (Cherry-picked from #4586)
2019-02-17CNv4 JIT compiler for x86-64 and testsSChernykh4-0/+2746
Minimalistic JIT code generator for random math sequence in CryptonightR. Usage: - Allocate writable and executable memory - Call v4_generate_JIT_code with "buf" pointed to memory allocated on the previous step - Call the generated code instead of "v4_random_math(code, r)", omit the "code" parameter
2019-02-17db_lmdb: fix missing mdb_dbi_close in migrationmoneromooo-monero1-0/+2
Fixed by hyc
2019-02-17miner: fix build with boost 1.69moneromooo-monero1-1/+1
2019-02-15blockchain: fix m_long_term_block_weight_height initializationmoneromooo-monero1-6/+13
Also check return of that function, it can now return error
2019-02-15blockchain: forbid older BP rct versions from v11moneromooo-monero1-1/+18
2019-02-15Fix v3/v4 db conversionmoneromooo-monero2-2/+8
2019-02-14Build fixes for some platformsmoneromooo-monero4-16/+16
2019-02-14blockchain: add v10 fork heightsmoneromooo-monero1-0/+5
2019-02-14Adding cnv4-2 tweaksLee Clagett2-31/+71
2019-02-14Cryptonight variant 4 aka CryptonightRSChernykh6-17/+508
It introduces random integer math into the main loop.
2019-02-14slow-hash: some more big endian fixesxiphon1-6/+6
2019-02-14slow-hash: fix for big endianmoneromooo-monero1-20/+21
2019-02-14Small function declaration cleanup in slow-hash.cPol Mauri1-5/+2
- These functions are declared twice in slow-hash.c. Remove one of the copies. - The declarations have the wrong return type, should be void, not int. Function definitions here: https://github.com/monero-project/monero/blob/1e74586ee99e4bd89626d2eb4d23883cd91f0f81/src/crypto/aesb.c#L151-L180 Test plan: make release-test
2019-02-14Add support for V10 protocol with BulletProofV2 and short amount.cslashm1-13/+34
2019-02-14Fix dummy decryption in debug modecslashm1-1/+3
2019-02-14fix log namespacecslashm1-45/+45
2019-02-14New scheme key destination contrfolcslashm7-63/+233
Implies protocol version management.
2019-02-14cryptonote: Fix enum check in expand_transaction_2Tom Smeding1-1/+1
This was noticed because GCC warned about using an enum value in a boolean context.
2019-02-14simplewallet: tell the user to complain to the recipientmoneromooo-monero1-1/+1
for long payment ids
2019-02-14ringct: fix v1 ecdhInfo serializationmoneromooo-monero1-16/+2
The change made for v2 broke v1, and we have no way to know which version we're serializing here. However, since we don't actually care about space savings in this case, we continue serialiazing both mask and amount.
2019-02-12ringct: the commitment mask is now deterministicmoneromooo-monero5-36/+57
saves space in the tx and is safe Found by knaccc
2019-02-12ringct: encode 8 byte amount, saving 24 bytes per outputmoneromooo-monero11-28/+71
Found by knaccc
2019-02-12ringct: save 3 bytes on bulletproof sizemoneromooo-monero1-1/+4
Found by luigi1111
2019-02-12add a bulletproof version, new bulletproof type, and rct configmoneromooo-monero12-62/+95
This makes it easier to modify the bulletproof format
2019-02-12core: include a dummy encrypted payment id when no payment is usedmoneromooo-monero2-14/+58
For better transaction uniformity, even though this wastes space.
2019-02-12core, wallet: remember original text version of destination addressmoneromooo-monero5-10/+33
2019-02-12simplewallet: disable long payment ids by defaultmoneromooo-monero2-13/+38
unless --long-payment-id-support is used
2019-02-12blockchain: fix wrong hf version when popping multiple blocksmoneromooo-monero3-6/+37
Since we keep track of the hf version in the db, we pick it up from there instead of doing the full reorg call, which is quite expensive
2019-02-12simplewallet: remove ability to transfer with detached short payment idsmoneromooo-monero1-31/+2
It seemed like a good idea at the time
2019-02-12blockchain: fix block rate check for empty blockchainsmoneromooo-monero1-1/+3
2019-02-12ignore child process when execJethro Grassie1-0/+4
2019-02-12wallet2: fix ring reuse breaking when using histogrammoneromooo-monero1-0/+3
2019-02-12core: fix unmixable special case allowing ring size below 11moneromooo-monero1-1/+1
2019-02-12blockchain: include number of discarded blocks in --reorg-notifymoneromooo-monero2-3/+5
2019-02-12core: add a few more block rate window sizesmoneromooo-monero1-1/+1
The 10 minute one will never trigger for 0 blocks, as it's still fairly likely to happen even without the actual hash rate changing much, so we add a 20 minute window, where it will (for 0 blocks) and a one hour window.
2019-02-12notify: fix tokenizing being too strictmoneromooo-monero1-1/+1
2019-02-12core: add --block-rate-notifymoneromooo-monero2-0/+33
This runs a command whenever the block rate deviates too much from the expectation
2019-02-12blockchain: add --reorg-notifymoneromooo-monero3-1/+32
This will trigger if a reorg is seen. This may be used to do things like stop automated withdrawals on large reorgs. %s is replaced by the height at the split point %h is replaced by the height of the new chain %n is replaced by the number of new blocks after the reorg
2019-02-12cryptonote_core: warn when the block rate deviates from expectationsmoneromooo-monero4-7/+64
The warning threshold is set to allow a false positive every ten days on average.
2019-02-12notify: handle arbitrary tagsmoneromooo-monero4-6/+22
2019-02-12ArticMine's new block weight algorithmmoneromooo-monero14-28/+551
This curbs runaway growth while still allowing substantial spikes in block weight Original specification from ArticMine: here is the scaling proposal Define: LongTermBlockWeight Before fork: LongTermBlockWeight = BlockWeight At or after fork: LongTermBlockWeight = min(BlockWeight, 1.4*LongTermEffectiveMedianBlockWeight) Note: To avoid possible consensus issues over rounding the LongTermBlockWeight for a given block should be calculated to the nearest byte, and stored as a integer in the block itself. The stored LongTermBlockWeight is then used for future calculations of the LongTermEffectiveMedianBlockWeight and not recalculated each time. Define: LongTermEffectiveMedianBlockWeight LongTermEffectiveMedianBlockWeight = max(300000, MedianOverPrevious100000Blocks(LongTermBlockWeight)) Change Definition of EffectiveMedianBlockWeight From (current definition) EffectiveMedianBlockWeight = max(300000, MedianOverPrevious100Blocks(BlockWeight)) To (proposed definition) EffectiveMedianBlockWeight = min(max(300000, MedianOverPrevious100Blocks(BlockWeight)), 50*LongTermEffectiveMedianBlockWeight) Notes: 1) There are no other changes to the existing penalty formula, median calculation, fees etc. 2) There is the requirement to store the LongTermBlockWeight of a block unencrypted in the block itself. This is to avoid possible consensus issues over rounding and also to prevent the calculations from becoming unwieldy as we move away from the fork. 3) When the EffectiveMedianBlockWeight cap is reached it is still possible to mine blocks up to 2x the EffectiveMedianBlockWeight by paying the corresponding penalty.
2018-10-23wallet2: extend fake out picks away from the gamma pickmoneromooo-monero1-2/+23
in order to unbias selection from blocks with few txes
2018-10-22update version to 0.13.0.4Riccardo Spagni1-1/+1
2018-10-22Providing user supplied default constructor for expect<void>Lee Clagett1-1/+3
2018-10-19blockchain: move two new verification errors to the verify categorymoneromooo-monero1-2/+2
Lest we get people get scared again
2018-10-19rpc: fix output distribution caching ignoring chain changesmoneromooo-monero1-6/+8
0 is placeholder for whole chain, so we should compare chain height changes rather than chain-height-or-zero. Even this isn't totally foolproof if a blocks are popped and the same number added again, but it is much better as it prevents the data from slowly going out of sync.
2018-10-18Rename "blackball" for claritymoneromooo-monero6-36/+36
Apparently some people seem to think it's a censorship list...
2018-10-18device: fixed Ledger Nano S device selectionxiphon2-6/+6
2018-10-18tx_pool: revert #4592 and move bin2hex conversion to on_get_transaction_poolstoffu2-1/+3
2018-10-17core: don't verify range proofs multiple timesmoneromooo-monero1-1/+6
2018-10-17spawn: close all file descriptors before execvemoneromooo-monero3-0/+25
No need to give whatever we're calling access to what we use
2018-10-16util: close keys file lock on execmoneromooo-monero1-1/+1
2018-10-16wallet_rpc_server: fix change_wallet_password RPCmoneromooo-monero1-2/+1
2018-10-16wallet2_api: fix generating new wallet in the GUImoneromooo-monero1-1/+1
It was creating a new wallet without a password first (this should be fixed), then not changing the password correctly
2018-10-15daemon: fix reading past stack on exitmoneromooo-monero1-5/+10
2018-10-15bump version to 0.13.0.3Riccardo Spagni1-1/+1
2018-10-15tx_pool: store hex string instead of raw binary to tx_blob of ↵stoffu1-1/+1
get_transaction_pool RPC Inspired by https://github.com/masari-project/masari/issues/93
2018-10-14password: fix backspace outputting ^? on linux on echoing secure inputmoneromooo-monero1-0/+7
2018-10-14password: fix secure input with echo on windowsmoneromooo-monero1-2/+6
Thanks to iDunk for the testing back and forth
2018-10-13Revert "p2p: connect via the bound ip, if any"moneromooo-monero1-3/+3
This reverts commit 909398efc79cb1fa92e330e9a50a316ca5858953. It looks like it's causing trouble with tor on some setups
2018-10-12SOFTWARE is the default wallet devicem2049r1-0/+1
2018-10-12daemon: do not run complex code in a signal handlermoneromooo-monero1-1/+8
instead, delegate the work to a one off thread and notify it from the signal handler
2018-10-12simplewallet: mark default-ring-size setting as obsoletemoneromooo-monero1-1/+1
2018-10-12simplewallet: fix view key parsing in --generate-from-view-keymoneromooo-monero1-1/+1
2018-10-09remove -release from the version stringRiccardo Spagni1-1/+1
2018-10-09update version for releaseRiccardo Spagni1-1/+1
2018-10-09Merge pull request #4540Riccardo Spagni1-4/+1
8833aec0 wallet2: fix cold signing using non padded bulletproofs (moneromooo-monero)
2018-10-09Merge pull request #4535Riccardo Spagni1-1/+1
c716a331 device: increase ledger timeout to 2 minutes (selsta)
2018-10-09Merge pull request #4538Riccardo Spagni1-6/+6
bd7b800f device_io_hid: fix DEFAULT_* type (too short) and init time (moneromooo-monero)
2018-10-09Merge pull request #4532Riccardo Spagni1-9/+16
8f22e808 device: destroy device objects on exit (moneromooo-monero)
2018-10-08Merge pull request #4530Riccardo Spagni1-1/+1
77471e23 blockchain_blackball: fix stray ! (moneromooo-monero)
2018-10-08Merge pull request #4527Riccardo Spagni1-9/+0
c5a97315 Remove last traces of libpcsc-lite (moneromooo-monero)
2018-10-08Revert "Merge pull request #4472"Riccardo Spagni16-110/+183
This reverts commit b26ab0b5803af4ffe23de11a45e43877301a4902.
2018-10-08Merge pull request #4514Riccardo Spagni1-15/+18
85e58cb2 blockchain_blackball: fix stats double counting (moneromooo-monero)
2018-10-07Merge pull request #4036Riccardo Spagni13-114/+549
9acf42d3 Multisig M/N functionality core tests added (naughtyfox) 9f3963e8 Arbitrary M/N multisig schemes: * support in wallet2 * support in monero-wallet-cli * support in monero-wallet-rpc * support in wallet api * support in monero-gen-trusted-multisig * unit tests for multisig wallets creation (naughtyfox)
2018-10-07Merge pull request #4505Riccardo Spagni3-44/+44
977df631 Fix some calls to the translation function (Guillaume LE VAILLANT)
2018-10-06Merge pull request #4472Riccardo Spagni16-183/+110
02d3ef7b blocks: use auto-generated .c files instead of 'LD -r -b binary' (xiphon)
2018-10-06Merge pull request #4495Riccardo Spagni1-3/+3
34a85e0c wallet2: disable height based segregation (moneromooo-monero)
2018-10-06Merge pull request #4499Riccardo Spagni1-7/+14
c5928bde wallet2_api: fix build with C++14 (moneromooo-monero)
2018-10-06Merge pull request #4390Riccardo Spagni4-58/+57
a0613532 secure_pwd_reader: Add proper Unicode handling [Ryo contribution] (fireice-uk) 579383c2 simplewallet: Add Unicode input_line [Ryo backport] (fireice-uk)
2018-10-06Merge pull request #4487Riccardo Spagni1-2/+2
7c790f11 Fix rtxn usage in BlockchainLMDB::get_estimated_batch_size (Howard Chu)
2018-10-02Merge pull request #4485v0.13.0.2-RC2Riccardo Spagni1-5/+15
5ec929fb daemon: do not display uptime when not known (moneromooo-monero)
2018-10-02Merge pull request #4490Riccardo Spagni1-1/+1
bccd88dd wallet2: clear found out for every tx key (doy-lee)
2018-10-02Merge pull request #4484Riccardo Spagni2-9/+17
2c74b1a1 wallet_rpc_server: include all transfer records for a txid (moneromooo-monero)
2018-10-02Merge pull request #4482Riccardo Spagni6-7/+20
25e5890d wallet: fix --generate-from-json using wrong password (moneromooo-monero)
2018-10-02Merge pull request #4479Riccardo Spagni4-11/+65
d5541e44 common: Windows 'spawn' support for tx and block notifications (xiphon)
2018-10-02Merge pull request #4476Riccardo Spagni1-1/+1
fa9e54b6 build: fix gcc false positive 'stringop-overflow' warning (xiphon)
2018-10-02Merge pull request #4475Riccardo Spagni3-2/+28
6da36ea0 wallet2_api: blackball/unblackball now take two parameters (moneromooo-monero)
2018-10-02Merge pull request #4470Riccardo Spagni3-3/+13
2fbf38ee Fix 32bit depends builds (TheCharlatan) 17142ec9 malloc scratchpad for all supported android archs (m2049r) 6a781408 Make depends use self built clang for darwin (TheCharlatan) 69da14e1 fixes make debug compilation on OSX (Dusan Klinec) fe125647 Fixup RENAME_DB() macro (Howard Chu) b2972927 osx compilation fix: missing boost libs added (Dusan Klinec) 174f31bf simplewallet: don't complain about payment id on pool mined blocks (moneromooo-monero) 89288863 README: mention ASAN usage alongside valgrind (moneromooo-monero) 83debef9 wallet_rpc_server: remove verbose field in incoming_transfers query (moneromooo-monero) a69271fa Fixed a typo (Piotr Kąkol) 92d1da28 unit_tests: fix build with GCC 5.4.0 on ubuntu (moneromooo-monero) a21da905 Wallet: use unique_ptr for WalletImpl members (oneiric) 7a056f44 WalletAPI: multisigSignData bug fixed (naughtyfox) 43a06350 ringdb: use cursors to be a bit faster (moneromooo-monero) 7964d4f8 wallet2: handle corner case in picking fake outputs (moneromooo-monero) 6f5360b3 bump version to 0.13.0.1 (Riccardo Spagni) cf470bf3 switch from master to rc (Riccardo Spagni)
2018-10-02Merge pull request #4467Riccardo Spagni1-2/+2
fa942ef6 daemon: silence daemon update warnings on testnet (iDunk5400)
2018-10-02Merge pull request #4463Riccardo Spagni1-3/+4
8110bea3 dns_utils: refresh list of usable DNSSEC servers (moneromooo-monero)
2018-09-29add --block-notify to monerod and --tx-notify to monero-wallet-{cli,rpc}moneromooo-monero10-0/+300
Those take a command line of the form "A [B]", with A being the name (and optional path, if not in the caller's CWD, but fully qualified path is recommended, avoids possible security issues) to a program, and optional arguments. Any occurence of the two character string "%s" will be replaced by the hash of the block or transaction which triggered the notification. Tokenization is barebones. If you want things like pipes, calls to paths with spaces, etc, then use a script (though exec time will suffer). block-notify is called when a new block is added onto the chain. tx-notify is called when a new transaction happens with the wallet as source and/or destination. It is the notification program's responsibility to determine what to do in those cases. Note that this is asynchronous, so it is very possible that: - the notification programs will be run out of order - several events happen before the notification for the first one A Windows port would be nice if someone wants to make one.
2018-09-28wallet_rpc_server: remove verbose field in incoming_transfers querymoneromooo-monero2-3/+1
The key image (which was only supplied if verbose was true) is readily available, not a secret key, and it was only modelled after the CLI command because it's a bit spammy for the CLI.
2018-09-28wallet2: fix transfers between subaddresses hitting the sanity checkmoneromooo-monero1-1/+5
Transfers between subaddresses are accounted for differently
2018-09-27miner: restore stream flags after changing themmoneromooo-monero1-1/+2
Coverity 136462
2018-09-27miner: do not propagate exceptions through dtormoneromooo-monero1-1/+2
Coverity 161862
2018-09-27db_lmdb: do not propagate exceptions in dtormoneromooo-monero1-1/+4
Not much we can do here Coverity 161875
2018-09-27wallet_rpc_server: exit cleanly on unhandled exceptionsmoneromooo-monero1-0/+3
Coverity 161868
2018-09-27threadpool: do not propagate exceptions through the dtormoneromooo-monero1-1/+2
This would call terminate. We ignore exceptions in pthread_join instead, as this is not a fatal problem here. Coverity 182568
2018-09-27gen_multisig: nice exit on unhandled exceptionmoneromooo-monero1-1/+3
Coverity 182569
2018-09-27db_lmdb: catch error in mdb_stat calls during migrationmoneromooo-monero1-4/+12
Coverity 188305
2018-09-27blockchain_blackball: catch failure to commit db transactionmoneromooo-monero1-2/+4
Coverity 188349
2018-09-27use default create_address_file argumentm2049r2-3/+3
2018-09-27simplewallet: top level exception catcher to print nicer messagesmoneromooo-monero1-1/+3
Coverity 188408
2018-09-27blockchain_blackball: fix shift range for 32 bit archsmoneromooo-monero1-1/+1
Coverity 188406
2018-09-27device: set device name correctly if key_on_device is setDusan Klinec1-2/+9
2018-09-26malloc scratchpad for all supported android archsm2049r1-2/+41
2018-09-25Fixup RENAME_DB() macroHoward Chu1-2/+12
Make sure target DB's record is on a writable page
2018-09-25bump version to 0.13.0.1Riccardo Spagni1-1/+1
2018-09-25switch from master to rcRiccardo Spagni1-1/+1
2018-09-25simplewallet: don't complain about payment id on pool mined blocksmoneromooo-monero1-1/+2
Those use the extra nonce without a payment id
2018-09-25wallet2: fix duplicate output making it to the RPCmoneromooo-monero1-8/+33
2018-09-25tx_pool: fix tx removal at startup keeping referencesmoneromooo-monero1-0/+1
2018-09-25add checkpoints for testnet and mainnetRiccardo Spagni1-1/+2
2018-09-24blockchain: add stagenet v8 and v9, two weeks before mainnetmoneromooo-monero1-0/+2
2018-09-24Replace USB-CCID (smartcard) by USB-HIDcslashm10-190/+578
Remove PCSC dependencies which is a bit hard (not user friendly) to install on linux and Mac Split Ledger logic and device IO
2018-09-24wallet_rpc_server: include account index in incoming_transfers RPCmoneromooo-monero2-2/+2
2018-09-24bulletproofs: multiply points by 8 first thing in verificationmoneromooo-monero1-15/+17
instead of merging that with other scalar multiplications where possible for speed, since this is not actually safe
2018-09-23update checkpoints.datRiccardo Spagni2-1/+1
2018-09-22wallet2_api: fix for latest code changesmoneromooo-monero3-3/+3
2018-09-22Wallet: use unique_ptr for WalletImpl membersoneiric2-22/+16
Use unique_ptr to manage WalletImpl internals, rather than raw pointers.
2018-09-22update version to 13.0Riccardo Spagni1-2/+2
2018-09-22wallet2: handle corner case in picking fake outputsmoneromooo-monero1-3/+27
If we originally think we have enough outputs on the blockchain to pick random fake outputs, we might end up with not enough of them if enough are actually blackballed.
2018-09-22wallet_rpc_server: fix --run-as-service on Windowsmoneromooo-monero1-0/+1
Thanks iDunk for the windows testing
2018-09-22cryptonote tweak v2.2Lee Clagett1-0/+20
2018-09-21device: fix warnings about overridden functionsmoneromooo-monero2-2/+2
2018-09-21wallet_rpc_server: fix build for windowsmoneromooo-monero1-8/+17
Thanks iDunk for building patches on windows
2018-09-21WalletAPI: multisigSignData bug fixednaughtyfox1-1/+5
2018-09-20ringdb: use cursors to be a bit fastermoneromooo-monero1-7/+8
2018-09-19simplewallet: fix --generate-from-json setting wrong wallet filenamemoneromooo-monero1-2/+2
2018-09-19query backing devicem2049r10-17/+123
2018-09-18wallet: implement coin splitting for sweep_* 'outputs' optionwhythat1-3/+25
Implemented strategy splits total amount into N equal parts, where N is a specified number of outputs. If N > 1, dummy change output is NOT created. rebased by moneromooo
2018-09-18wallet: add 'outputs' option for sweep_* commandswhythat5-18/+74
'outputs' option allows to specify the number of separate outputs of smaller denomination that will be created by sweep operation. rebased by moneromooo
2018-09-17rpc: allow pruning of json encoded txscryptochangements341-1/+10
2018-09-17Fixed Keccak implementation on big-endian platformsAlexandro Sanchez1-3/+8
2018-09-17api/wallet: properly disable key encryptionstoffu5-13/+12
2018-09-17node_rpc_proxy: return a non empty error string on connection failuremoneromooo-monero1-5/+5
This makes it easier to avoid bugs on the caller side if errors are represented by non empty strings. This fixes the refresh height setting in new wallets when no daemon is running.
2018-09-16simplewallet: remove obsolete transfer_original commandmoneromooo-monero2-16/+5
2018-09-16wallet2_api: bring up to latest wallet apimoneromooo-monero3-18/+38
2018-09-15add daemonizer to rpc walletjcktm2-111/+166
2018-09-14blockchain_blackball: s/return false;/return 0;/moneromooo-monero1-1/+1
2018-09-14blockchain_blackball: use %zu for size_tmoneromooo-monero1-2/+2
2018-09-14blockchain_blackball: use mdb_size_t where appropriatemoneromooo-monero1-1/+1
2018-09-14blockchain_blackball: error out on fgets errormoneromooo-monero1-1/+5
2018-09-14hw_device: support for multiple devices added [for review]Dusan Klinec8-32/+160
- device name is a new wallet property - full device name is now a bit more structured so we can address particular device vendor + device path. Example: 'Ledger', 'Trezor:udp', 'Trezor:udp:127.0.0.1:21324', 'Trezor:bridge:usb01'. The part before ':' identifies HW device implementation, the optional part after ':' is device path to look for. - new --hw-device parameter added to the wallet, can name the hardware device - device reconnect added
2018-09-14wallet: ask-password can now ask without encrypting the secret spend keymoneromooo-monero4-56/+83
2018-09-14cn_deserialize: comment out pruned tx casemoneromooo-monero1-0/+2
it's not merged yet
2018-09-14remove obsolete daemon selection of fake outs and old tx constructionmoneromooo-monero15-949/+12
2018-09-14rct: avoid repeated unnecessary conversions when accummulatingmoneromooo-monero3-7/+25
2018-09-14rpc: add a "is an update available" flag in get_infomoneromooo-monero4-2/+23
Make it easier for a user to be told when to update
2018-09-14simplewallet: print reason why refresh+password is neededmoneromooo-monero1-1/+1
2018-09-13rpc: add cumulative difficulty in block header datamoneromooo-monero2-0/+3
2018-09-13tx_pool: make the max tx size a consensus rule from v8moneromooo-monero1-1/+1
2018-09-13Add bulletproof supportcslashm1-1/+1
2018-09-12Adding expect<T> - a value-or-error implementationLee Clagett5-0/+648
2018-09-12blockchain: simplify output distribution codemoneromooo-monero1-7/+2
2018-09-12db_lmdb: do not use base for cumulative distributionmoneromooo-monero1-0/+2
it's confusing and needlessly complicated
2018-09-12rctTypes: fix incorrect serializationstoffu1-2/+2
2018-09-12wallet: use wipeable_string in more places where a secret is usedmoneromooo-monero2-37/+41
2018-09-11NetBSD supportthomasvaughan3-8/+10
2018-09-11blockchain: add a testnet v9 a day after v8moneromooo-monero1-0/+1
So that bulletproofs become mandatory
2018-09-11wallet2: bump testnet rollback to account for coming reorgmoneromooo-monero1-1/+1
2018-09-11bulletproofs: #include <openssl/bn.h>moneromooo-monero1-0/+1
Apparently needed for openssl 1.1.x
2018-09-11bulletproofs: speed up the latest changes a bitmoneromooo-monero4-34/+54
2018-09-11bulletproofs: scale points by 8 to ensure subgroup validitymoneromooo-monero4-19/+33
2018-09-11bulletproofs: match aggregated verification to sarang's latest prototypemoneromooo-monero1-64/+39
2018-09-11more comprehensive test for ge_p3 comparison to identity/point at infinitymoneromooo-monero3-6/+21
Reported by QuarksLab.
2018-09-11multiexp: fix maxscalar off by onemoneromooo-monero1-1/+1
Reported by QuarksLab.
2018-09-11ringct: error out when hashToPoint* returns the point at infinitymoneromooo-monero2-1/+4
Reported by QuarksLab.
2018-09-11cryptonote_basic: check output type before using itmoneromooo-monero1-0/+7
Reported by QuarksLab.
2018-09-11ringct: prevent a potential very large allocationmoneromooo-monero1-2/+2
Reported by QuarksLab.
2018-09-11crypto: some paranoid checks in generate_signature/check_signaturemoneromooo-monero1-1/+11
Reported by QuarksLab.
2018-09-11crypto: never return zero in random32_unbiasedmoneromooo-monero1-1/+1
This avoids problems when the caller can't deal with a zero walue, which happens often enough that it's worth nipping the problem in the bud.
2018-09-11multiexp: fix wrong Bos-Coster result for 1 non trivial inputmoneromooo-monero1-3/+7
Reported by QuarksLab.
2018-09-11Check inputs to addKeys are in rangemoneromooo-monero2-0/+6
Reported by QuarksLab.
2018-09-11bulletproofs: reject x, y, z, or w[i] being zeromoneromooo-monero1-2/+63
Also try again when we're generate a proof with those characteristics Reported by QuarksLab.
2018-09-11v8: per byte fee, pad bulletproofs, fixed 11 ring sizemoneromooo-monero41-622/+969
2018-09-11bulletproofs: a few fixes from the Kudelski reviewmoneromooo-monero3-5/+23
- fix integer overflow in n_bulletproof_amounts - check input scalars are in range - remove use of environment variable to tweak straus performance - do not use implementation defined signed shift for signum
2018-09-11bulletproofs: reject points not in the main subgroupmoneromooo-monero3-0/+33
2018-09-11bulletproofs: speed up a few multiplies using existing Hi cachemoneromooo-monero1-2/+11
2018-09-11Add Pippenger cache and limit Straus cache sizemoneromooo-monero3-30/+82
2018-09-11perf_timer: split timer class into a base one and a logging onemoneromooo-monero2-14/+42
2018-09-11Pippenger multiexpmoneromooo-monero3-3/+138
Based on sarang's python code
2018-09-11multiexp: cut down on memory allocationsmoneromooo-monero1-15/+13
2018-09-11precalc the ge_p3 representation of Hmoneromooo-monero4-14/+19
2018-09-11require canonical multi output bulletproof layoutmoneromooo-monero1-0/+29
2018-09-11Add a define for the max number of bulletproof multi-outputsmoneromooo-monero3-2/+5
2018-09-11Bulletproof aggregated verification and testsmoneromooo-monero12-153/+250
Also constrains bulletproofs to simple rct, for simplicity
2018-09-11multiexp: some speedupsmoneromooo-monero3-28/+121
- use a raw memory block to store cache - use aligned memory - use doubling API where appropriate - calculate straus in bands
2018-09-11aligned: aligned memory alloc/realloc/freemoneromooo-monero3-2/+184