aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindPCSC.cmake (follow)
AgeCommit message (Collapse)AuthorFilesLines
2018-09-24Replace USB-CCID (smartcard) by USB-HIDcslashm1-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
2018-09-10Add Miniupnp submoduleTheCharlatan1-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
2018-05-31Fix CMAKE config for PCSC in order to avoid msys DLL dependenciescslashm1-17/+20
merge of PR #3886
2018-05-23Fix PCSC compilation under windowscslashm1-0/+6
PR3843 based on release-v0.12 => rebased on master
2018-03-04Code modifications to integrate Ledger HW device into monero-wallet-cli.cslashm1-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.