aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindPCSC.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Replace USB-CCID (smartcard) by USB-HIDcslashm2018-09-241-54/+0
| | | | | | Remove PCSC dependencies which is a bit hard (not user friendly) to install on linux and Mac Split Ledger logic and device IO
* Add Miniupnp submoduleTheCharlatan2018-09-101-1/+2
| | | | | Drop miniupnp and unbound depends builds. Make sure that build variables are propageted properly to unbound and miniupnp. Rebase to after the v0.12 release
* Fix CMAKE config for PCSC in order to avoid msys DLL dependenciescslashm2018-05-311-17/+20
| | | | merge of PR #3886
* Fix PCSC compilation under windowscslashm2018-05-231-0/+6
| | | | PR3843 based on release-v0.12 => rebased on master
* Code modifications to integrate Ledger HW device into monero-wallet-cli.cslashm2018-03-041-0/+44
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.