| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |\
| |
| |
| | |
5ef4bf05 simplewallet: fix help message of sign_transfer (stoffu)
|
| | | |
|
| |/ |
|
| |\
| |
| |
| | |
4c6ff21c wallet: warn if not using the default ring size (moneromooo-monero)
|
| | | |
|
| |/ |
|
| |
|
|
|
| |
When creating/restoring wallet, if --restore-height option is not used the current estimate
height is used for starting the scan. In other words it is assume we are creating a new account.
|
| | |
|
| |\
| |
| |
| | |
8ea3c4d5 simplewallet: new --use-english-language-names flag (moneromooo-monero)
|
| | |
| |
| |
| |
| | |
On some Windows systems, displaying language names in their own
languages freezes the display.
|
| |/
|
|
| |
via user setting first, then DNS TXT record, hardcoded fallback
|
| |
|
|
|
|
| |
lookahead in order to avoid
so looooong time of set-up when creating a HW based wallet.
|
| |\
| |
| |
| | |
6f54c910 simplewallet: fix restore height prompt that got disabled by #3175 (stoffu)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
833f9fcf show '<Not set>' for empty wallet description (cryptochangements34)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
57c0b1ed Fix typos in various files (Dimitris Apostolou)
|
| | | |/
| |/| |
|
| | | |
| | |
| | |
| | |
| | | |
It can now take a txid (to display rings for all its inputs),
and will print rings in a format that set_ring understands
|
| | | |
| | |
| | |
| | |
| | | |
This is so one can set rings for spent key images in case the
attackers don't merge the ring matching patch set.
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
If a pre-fork output is spent on both Monero and attack chain,
any post-fork output can be deduced to be a fake output, thereby
decreasing the effective ring size.
The segregate-per-fork-outputs option, on by default, allows
selecting only pre-fork outputs in this case, so that the same
ring can be used when spending it on the other side, which does
not decrease the effective ring size.
This is intended to be SET when intending to spend Monero on the
attack fork, and to be UNSET if not intending to spend Monero
on the attack fork (since it leaks the fact that the output being
spent is pre-fork).
If the user is not certain yet whether they will spend pre-fork
outputs on a key reusing fork, the key-reuse-mitigation2 option
should be SET instead.
If you use this option and intend to spend Monero on both forks,
then spend real Monero first.
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This maps key images to rings, so that different forks can reuse
the rings by key image. This avoids revealing the real inputs like
would happen if two forks spent the same outputs with different
rings. This database is meant to be shared with all Monero forks
which don't bother making a new chain, putting users' privacy at
risk in the process. It is placed in a shared data directory by
default ($HOME/.shared-ringdb on UNIX like systems). You may
use --shared-ringdb-dir to override this location, and should
then do so for all Monero forks for them to share the database.
|
| |\ \ \
| | | |
| | | |
| | | | |
c5024c5b simplewallet: add a warning when getting a daemon error in transfer (moneromooo-monero)
|
| | | | |
| | | |
| | | |
| | | |
| | | | |
A malicious daemon (or MITM) could attempt to add spurious errors
so the wallet tries again, sending another set of fake outs.
|
| | |/ /
|/| |
| | |
| | | |
calls to wallet2
|
| |\ \ \
| | | |
| | | |
| | | | |
b63ea060 simplewallet: do not call a RPC when displaying the prompt (moneromooo-monero)
|
| | | |/
| |/|
| | |
| | | |
Speeds up refresh when you have a lot of in/out transactions
|
| | |/
|/|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When #3303 was merged, a cyclic dependency chain was generated:
libdevice <- libcncrypto <- libringct <- libdevice
This was because libdevice needs access to a set of basic crypto operations
implemented in libringct such as scalarmultBase(), while libringct also needs
access to abstracted crypto operations implemented in libdevice such as
ecdhEncode(). To untangle this cyclic dependency chain, this patch splits libringct
into libringct_basic and libringct, where the basic crypto ops previously in
libringct are moved into libringct_basic. The cyclic dependency is now resolved
thanks to this separation:
libcncrypto <- libringct_basic <- libdevice <- libcryptonote_basic <- libringct
This eliminates the need for crypto_device.cpp and rctOps_device.cpp.
Also, many abstracted interfaces of hw::device such as encrypt_payment_id() and
get_subaddress_secret_key() were previously implemented in libcryptonote_basic
(cryptonote_format_utils.cpp) and were then called from hw::core::device_default,
which is odd because libdevice is supposed to be independent of libcryptonote_basic.
Therefore, those functions were moved to device_default.cpp.
|
| |\ \
| | |
| | |
| | | |
1979d53d wallet: fixes and tweaks to the save_watch_only command (moneromooo-monero)
|
| | | |
| | |
| | |
| | |
| | |
| | | |
- save the new keys file as FOO-watchonly.keys, not FOO.keys-watchonly
- catch any exception (eg, I/O errors) and error out
- print the new keys filename in simplewallet
|
| |\ \ \
| |_|/
|/| |
| | | |
649a1b7a wallet2 / simplewallet: Must opt-in to create '.address.txt' files for new wallets (Leon Klingele)
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
wallets
Previously, a file containing the unencrypted Monero address was
created by default in the wallet's directory. This file might pose
as a privacy risk. The creation of this file is now opt-in and can
be enabled by providing
--create-address-file
|
| |/ |
|
| |\
| |
| |
| | |
f2bb8085 Fix #3297 use the password_prompter helper (Howard Chu)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
399120dd simplewallet: set seed language when restoring from english-old seed (stoffu)
|
| | | | |
|
| |\ \ \
| | | |
| | | |
| | | | |
43026822 Wallet2 + CLI wallet: UTF-8 support for filenames and paths under Windows (rbrunner7)
|
| | |/ / |
|
| |\ \ \
| | | |
| | | |
| | | | |
6b40ea93 simplewallet: fix print_ring_members printing wrong heights (moneromooo-monero)
|
| | |/ /
| | |
| | |
| | | |
And also use uint64_t instead of int for heights where appropriate
|
| |\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
0e7ad2e2 Wallet API: generalize 'bool testnet' to 'NetworkType nettype' (stoffu)
af773211 Stagenet (stoffu)
cc9a0bee command_line: allow args to depend on more than one args (stoffu)
55f8d917 command_line::get_arg: remove 'required' for dependent args as they're always optional (stoffu)
450306a0 command line: allow has_arg to handle arg_descriptor<bool,false,true> #3318 (stoffu)
9f9e095a Use `genesis_tx` parameter in `generate_genesis_block`. #3261 (Jean Pierre Dudey)
|
| | | | | |
|
| |/ / / |
|
| |/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| |\ \
| | |
| | |
| | | |
fd57e13a simplewallet: typo in generate-from-multisig-keys (stoffu)
|
| | |/ |
|