Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-03-04 | Code modifications to integrate Ledger HW device into monero-wallet-cli. | cslashm | 1 | -0/+1 | |
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. | |||||
2018-01-26 | Update 2018 copyright | xmr-eric | 1 | -1/+1 | |
2017-09-25 | fix typo in basic and core CMakeLists.txt | moneromooo-monero | 1 | -1/+1 | |
2017-09-25 | move checkpoints in a separate library | moneromooo-monero | 1 | -2/+1 | |
2017-06-08 | Add OSX background mining | jethro | 1 | -0/+6 | |
Implements miner::get_system_times, miner::get_process_time and miner::on_battery_power for OSX so that background mining works on OSX. | |||||
2017-05-23 | changed crypto to cncrypto so it generated libcncrypto | Gentian | 1 | -1/+1 | |
fix a cmakelist | |||||
2017-03-10 | fix dependency: put HardFork back to cryptonote_basic, made some ↵ | kenshi84 | 1 | -0/+2 | |
BlockchainDB functions virtual again to avoid missing symbols error | |||||
2017-02-25 | core: move hardfork back to cryptonote_core | moneromooo-monero | 1 | -4/+2 | |
should fix a cross dependency betewen cryptonote_basic and blockchain_db | |||||
2017-02-21 | update copyright year, fix occasional lack of newline at line end | Riccardo Spagni | 1 | -1/+1 | |
2017-02-08 | extract some basic code from libcryptonote_core into libcryptonote_basic | kenshi84 | 1 | -0/+73 | |