| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| | |
|
| |
|
|
| |
They are allowed from v12, and MLSAGs are rejected from v13.
|
| | |
|
| |\
| |
| |
| | |
5ef0607da Update copyright year to 2020 (SomaticFanatic)
|
| | |
| |
| |
| | |
Update copyright year to 2020
|
| |/ |
|
| |\
| |
| |
| | |
e509ede trezor: adapt to new passphrase mechanism (ph4r05)
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
- choice where to enter passphrase is now made on the host
- use wipeable string in the comm stack
- wipe passphrase memory
- protocol optimizations, prepare for new firmware version
- minor fixes and improvements
- tests fixes, HF12 support
|
| |\ \
| |/
|/|
| | |
09abca7 wallet_api: checkUpdate - optional version and buildtag params (xiphon)
|
| | | |
|
| |\ \
| |/
|/|
| | |
cc18926 wallet2_api: wallet recovery - seed offset passphrase support (xiphon)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
dab604e wallet2_api: implement estimateTransactionFee (xiphon)
|
| | |/ |
|
| |/ |
|
| |\
| |
| |
| | |
c89f7ef wallet2_api: fix load unsigned tx from file error propagation (xiphon)
|
| | | |
|
| |/ |
|
| |\
| |
| |
| | |
884df82 wallet: provide original address for outgoing transfers (xiphon)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
def703a wallet_api: add multi destination tx support (selsta)
|
| | | | |
|
| |\ \ \
| |/ /
|/| |
| | | |
097cca5 wallet_api: catch getTxKey exception (ph4r05)
|
| | |/
| |
| |
| | |
- getTxKey method throws an exception, e.g., when user declines txKey export
|
| | |
| |
| | |
get_attribute expects 2 values instead of 1
|
| |\ \
| | |
| | |
| | | |
f074b6b device: show address on device display (ph4r05)
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| | |
- Trezor: support for device address display (subaddress, integrated address)
- Wallet::API support added
- Simplewallet:
- address device [<index>]
- address new <label> // shows address on device also
- integrated_address [device] <payment_id|address> // new optional "device" arg to display also on the device
|
| |\ \
| | |
| | |
| | | |
577324a wallet_manager: omit redundant disconnect, drop unused variable (xiphon)
|
| | |/ |
|
| |\ \
| |/
|/|
| | |
4c66614 expose set/get walletcache attribute functionality in wallet api (selsta)
|
| | | |
|
| |/
|
|
|
| |
also add a note when receiving the tx, because the user
might not notice the "XXX blocks to unlock" in the balance.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |\
| |
| |
| | |
5ade7281 Wallet API: multisig_tx_set passing bug fixed (naughtyfox)
|
| | | |
|
| |\ \
| | |
| | |
| | |
| | |
| | | |
c9b13fbb tests/trezor: HF9 and HF10 tests (Dusan Klinec)
a1fd1d49 device/trezor: HF10 support added, wallet::API (Dusan Klinec)
d74d26f2 crypto: hmac_keccak added (Dusan Klinec)
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- import only key images generated by cold signing process
- wallet_api: trezor methods added
- wallet: button request code added
- const added to methods
- wallet2::get_tx_key_device() tries to decrypt stored tx private keys using the device.
- simplewallet supports get_tx_key and get_tx_proof on hw device using the get_tx_key feature
- live refresh enables refresh with trezor i.e. computing key images on the fly. More convenient and efficient for users.
- device: has_ki_live_refresh added
- a thread is watching whether live refresh is being computed, if not for 30 seconds, it terminates the live refresh process - switches Trezor state
|
| |/ |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
RPC connections now have optional tranparent SSL.
An optional private key and certificate file can be passed,
using the --{rpc,daemon}-ssl-private-key and
--{rpc,daemon}-ssl-certificate options. Those have as
argument a path to a PEM format private private key and
certificate, respectively.
If not given, a temporary self signed certificate will be used.
SSL can be enabled or disabled using --{rpc}-ssl, which
accepts autodetect (default), disabled or enabled.
Access can be restricted to particular certificates using the
--rpc-ssl-allowed-certificates, which takes a list of
paths to PEM encoded certificates. This can allow a wallet to
connect to only the daemon they think they're connected to,
by forcing SSL and listing the paths to the known good
certificates.
To generate long term certificates:
openssl genrsa -out /tmp/KEY 4096
openssl req -new -key /tmp/KEY -out /tmp/REQ
openssl x509 -req -days 999999 -sha256 -in /tmp/REQ -signkey /tmp/KEY -out /tmp/CERT
/tmp/KEY is the private key, and /tmp/CERT is the certificate,
both in PEM format. /tmp/REQ can be removed. Adjust the last
command to set expiration date, etc, as needed. It doesn't
make a whole lot of sense for monero anyway, since most servers
will run with one time temporary self signed certificates anyway.
SSL support is transparent, so all communication is done on the
existing ports, with SSL autodetection. This means you can start
using an SSL daemon now, but you should not enforce SSL yet or
nothing will talk to you.
|
| |\
| |
| |
| | |
b8c5f550 wallet api: don't truncate address in subaddress_account (selsta)
|
| | |
| |
| |
| | |
Same behaviour as subaddress.cpp now.
|
| | | |
|
| |\ \
| |/
|/|
| | |
13785ec9 wallet api/device: set estimated restore height if none is provided (selsta)
|
| | | |
|
| |/ |
|