aboutsummaryrefslogtreecommitdiff
path: root/src/device/log.hpp (follow)
AgeCommit message (Collapse)AuthorFilesLines
2020-05-06Update copyright year to 2020SomaticFanatic1-1/+1
Update copyright year to 2020
2019-03-28Add get_tx_proof support, needed for new sanity checkcslashm1-0/+13
Enhance debug info
2019-03-05Update 2019 copyrightbinaryFate1-1/+1
2018-09-24Replace USB-CCID (smartcard) by USB-HIDcslashm1-3/+4
Remove PCSC dependencies which is a bit hard (not user friendly) to install on linux and Mac Split Ledger logic and device IO
2018-06-23device: misc cleanupmoneromooo-monero1-4/+4
use snprintf "just in case" where appropriate consistently use unsigned for temp values pass std::string by const ref rather than by value add length check (which can't happen in practice) for memcpy
2018-03-04Code modifications to integrate Ledger HW device into monero-wallet-cli.cslashm1-0/+69
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.