aboutsummaryrefslogtreecommitdiff
path: root/src/device_trezor/device_trezor.cpp
Commit message (Collapse)AuthorAgeFilesLines
* allow exporting outputs in chunksmoneromooo-monero2022-09-071-6/+6
| | | | | this will make it easier huge wallets to do so without hitting random limits (eg, max string size in node).
* feat(trezor): add HF15 support, BP+Dusan Klinec2022-08-051-20/+8
| | | | | - BP+ support added for Trezor - old Trezor firmware version support removed, code cleanup
* Copyright: Update to 2022mj-xmr2022-03-041-1/+1
|
* Merge pull request #7869luigi11112021-10-171-2/+2
|\ | | | | | | ad9fde4 UB: virtual methods in destructor at Trezor (mj-xmr)
| * UB: virtual methods in destructor at Trezormj-xmr2021-09-081-2/+2
| |
* | trezor: try empty passphrase firstDusan Klinec2021-08-031-0/+21
|/ | | | | | | | | | - Try empty passphrase first when opening a wallet, as all Trezors will have passphrase enabled by default by Trezor Suite by default. This feature enables easier access to all users using disabled passphrase (or empty passhprase) - If wallet address differs from device address with empty passphrase, another opening attempt is made, without passphrase suppression, so user can enter his passhprase if using some. In this scenario, nothing changes to user, wallet opening just consumes one more call to Trezor (get wallet address with empty passphrase) - also change how m_passphrase is used. Previous version did not work well with recent passphrase entry mechanism change (made in Trezor), thus this commit fixes the behaviour).
* Split epee/string_tools.h and encapsulate boost::lexical_castmj-xmr2021-04-161-0/+2
|
* Merge pull request #6512Alexander Blair2020-07-191-1/+1
|\ | | | | | | 5ef0607da Update copyright year to 2020 (SomaticFanatic)
| * Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
| | | | | | | | Update copyright year to 2020
* | trezor: add new firmware version supportDusan Klinec2020-05-121-1/+3
|/
* trezor: adapt to new passphrase mechanismDusan Klinec2020-04-271-24/+39
| | | | | | | | | - 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
* device: show address on device displayDusan Klinec2019-06-171-0/+16
| | | | | | | | | - 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
* device/trezor: increase live-refresh timeoutDusan Klinec2019-03-291-1/+1
|
* Merge pull request #5211Riccardo Spagni2019-03-211-21/+337
|\ | | | | | | | | | | 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)
| * device/trezor: HF10 support added, wallet::APIDusan Klinec2019-03-201-22/+338
| | | | | | | | | | | | | | | | | | | | | | | | - 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
* | Merge pull request #5166Riccardo Spagni2019-03-171-1/+1
|\ \ | | | | | | | | | 75e5aafd device/trezor: dummy payment ID fix (Dusan Klinec)
| * | device/trezor: dummy payment ID fixDusan Klinec2019-02-201-1/+1
| | |
* | | Merge pull request #5061Riccardo Spagni2019-03-171-1/+1
|\ \ \ | |_|/ |/| | | | | 1f2930ce Update 2019 copyright (binaryFate)
| * | Update 2019 copyrightbinaryFate2019-03-051-1/+1
| |/
* / device/trezor: debugging features, trezor testsDusan Klinec2019-03-051-6/+9
|/
* device/trezor: device/trezor: correct device initialization, status checkDusan Klinec2018-12-041-10/+67
| | | | | | | - checks if the device is in the correct usable state - implements check for the v2.0.9 firmware which does not support payment IDs - simple transacttion check, payment id fmt consistency - minor fixes, refactoring, webusb session counting fix
* device/trezor: webusb transport added, cmake fixesDusan Klinec2018-11-251-2/+1
| | | | | | | | | - webusb transport based on libusb added. Provides direct access to Trezor via USB, no need for Trezor bridge. - trezor protocol message handler improved, no recursion used. Ready for upcoming integration tests. - libusb (for docker) bumped from v1.0.9 to v1.0.22, newer version required for webusb transport, for device enumeration. - cmake improvements and fixes. Cmake Trezor checks are moved to a dedicated CheckTrezor.cmake file. In case of a problem Trezor is excluded from build. - ifdefs made consistent to Ledger. - UDP Transport enumeration disabled by default in release mode
* wallet2: only export necessary outputs and key imagesmoneromooo-monero2018-11-041-2/+3
| | | | | and disable annoying test that requires ridiculous amounts of skullduggery every time some format changes
* device/trezor: trezor support addedDusan Klinec2018-11-021-0/+363