Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-03-14 | device: untangle cyclic depenency | stoffu | 1 | -0/+1 | |
When #3303 was merged, a cyclic dependency chain was generated: libdevice <- libcncrypto <- libringct <- libdevice This was because libdevice needs access to a set of basic crypto operations implemented in libringct such as scalarmultBase(), while libringct also needs access to abstracted crypto operations implemented in libdevice such as ecdhEncode(). To untangle this cyclic dependency chain, this patch splits libringct into libringct_basic and libringct, where the basic crypto ops previously in libringct are moved into libringct_basic. The cyclic dependency is now resolved thanks to this separation: libcncrypto <- libringct_basic <- libdevice <- libcryptonote_basic <- libringct This eliminates the need for crypto_device.cpp and rctOps_device.cpp. Also, many abstracted interfaces of hw::device such as encrypt_payment_id() and get_subaddress_secret_key() were previously implemented in libcryptonote_basic (cryptonote_format_utils.cpp) and were then called from hw::core::device_default, which is odd because libdevice is supposed to be independent of libcryptonote_basic. Therefore, those functions were moved to device_default.cpp. | |||||
2018-03-06 | libwallet_merged: added missing libdevice | stoffu | 1 | -0/+1 | |
2018-01-26 | Update 2018 copyright | xmr-eric | 1 | -1/+1 | |
2017-12-31 | wallet_api: make this optional but not built by default | moneromooo-monero | 1 | -2/+2 | |
It means it can still be built with make -C build/debug wallet_api but still not DoS us while debugging | |||||
2017-12-17 | add multisig core test and factor multisig building blocks | moneromooo-monero | 1 | -0/+2 | |
2017-12-16 | Wallets now do not depend on the daemon rpc lib | moneromooo-monero | 1 | -1/+1 | |
The shared RPC code is now moved off into a separate lib | |||||
2017-11-16 | split wallet and wallet_api | moneromooo-monero | 1 | -29/+4 | |
This speeds up building a lot when wallet2.h (or something it includes) changes, since all the API includes wallet2.h | |||||
2017-11-14 | CMake: include RPC when building GUI deps | anonimal | 1 | -33/+30 | |
2017-11-14 | Do not build against epee_readline if it was not built | Howard Chu | 1 | -1/+1 | |
2017-11-14 | split off readline code into epee_readline | moneromooo-monero | 1 | -0/+1 | |
2017-11-02 | Remove wallet dependency on p2p | moneromooo-monero | 1 | -1/+0 | |
2017-10-07 | Subaddresses | kenshi84 | 1 | -0/+4 | |
2017-09-27 | cmake: add libversion and libcheckpoints to libwallet_merged | redfish | 1 | -1/+10 | |
Needed to link monero-core Qt wallet. | |||||
2017-09-21 | build: auto update version info without manually deleting version.h | stoffu | 1 | -2/+1 | |
2017-05-23 | changed crypto to cncrypto so it generated libcncrypto | Gentian | 1 | -2/+2 | |
fix a cmakelist | |||||
2017-04-03 | IOS CMAKE build settings | Jaquee | 1 | -1/+6 | |
2017-02-21 | update copyright year, fix occasional lack of newline at line end | Riccardo Spagni | 1 | -1/+1 | |
2017-02-11 | Fix GUI building after libcryptonote_core was split (#1626) | iDunk5400 | 1 | -1/+1 | |
2017-02-06 | Add server auth to monerod, and client auth to wallet-cli and wallet-rpc | Lee Clagett | 1 | -2/+1 | |
2017-01-16 | wallet: add a node RPC cache layer for simple RPC calls | moneromooo-monero | 1 | -0/+2 | |
Mostly getinfo and get_hard_fork_info, which are called pretty often. This speeds up transfers as a bonus. | |||||
2017-01-10 | GUI cold signing | Jaquee | 1 | -2/+4 | |
fix conflict | |||||
2016-12-13 | Adding HTTP Digest Auth (but not yet enabled) | Lee Clagett | 1 | -1/+1 | |
2016-12-12 | GUI address book | Jaquee | 1 | -2/+4 | |
2016-11-12 | Don't build monero-wallet-rpc when building the GUI | iDunk5400 | 1 | -29/+31 | |
2016-11-12 | wallet: add version dependency to the wallet target | moneromooo-monero | 1 | -0/+1 | |
2016-11-10 | Created monero-wallet-rpc, moving functionality from monero-wallet-cli | Lee Clagett | 1 | -0/+39 | |
2016-09-26 | Dropped "bit" from bitmonero. | Randi Joseph | 1 | -2/+2 | |
2016-09-18 | cmake: transitive deps and remove deprecated LINK_* | redfish | 1 | -3/+5 | |
Keep the immediate direct deps at the library that depends on them, declare deps as PUBLIC so that targets that link against that library get the library's deps as transitive deps. Break dep cycle between blockchain_db <-> crytonote_core. No code refactoring, just hide cycle from cmake so that it doesn't complain (cycles are allowed only between static libs, not shared libs). This is in preparation for supproting BUILD_SHARED_LIBS cmake built-in option for building internal libs as shared. | |||||
2016-09-03 | gui/libwallet_merged: libunbound is one more dependency | Ilya Kitaev | 1 | -9/+13 | |
2016-09-01 | wallet_merged: ringct added to dependencies | Ilya Kitaev | 1 | -1/+1 | |
2016-08-30 | cmake: merge libs via virtual object libraries | redfish | 1 | -2/+5 | |
CMake issued a warming about policy CMP0026: access of LOCATION target property at config time was disallowed. Offending code was the code that merged static libraries to generate libwallet_merged.a. This patch does that same merge task in a much simpler way. And, since it doesn't violate the policy, the warning went away. | |||||
2016-07-23 | cmake: wallet: libunbound is not always static | redfish | 1 | -22/+4 | |
It is not clear why libunbound was added to this in the first place, since it wasn't here before and #915 doesn't seem to introduce any new dependency on it. Tested build with STATIC=OFF (with and without libunbound-dev libunbound8 installed) and STATIC=ON, on Ubuntu Trusty, Debian Jessie, and Arch Linux. For static builds, beware of #926 and #907. If this hack was introduced to make it build on some other system (Windows? OS X?), then it will have to be dealt with, but not this way. | |||||
2016-07-18 | libwallet_api cmake: conditionally creating libwallet_merged2 only for | Ilya Kitaev | 1 | -7/+16 | |
STATIC build | |||||
2016-07-18 | hack to successfull linking for MSYS2 | Ilya Kitaev | 1 | -2/+6 | |
2016-06-24 | CMake: GPL 'libutils' script removed | Ilya Kitaev | 1 | -2/+4 | |
2016-06-23 | installing wallet_api header | Ilya Kitaev | 1 | -2/+2 | |
2016-06-23 | all wallet dependencies merged to single static lib | Ilya Kitaev | 1 | -2/+15 | |
2016-06-23 | merged with upstream | Ilya Kitaev | 1 | -1/+2 | |
2016-06-23 | api implementation splitted over separate files | Ilya Kitaev | 1 | -2/+12 | |
2016-03-16 | tests for wallet2_api | Ilya Kitaev | 1 | -1/+1 | |
2016-03-16 | wallet2 public api. initial commit | Ilya Kitaev | 1 | -2/+9 | |
2015-12-31 | updated copyright year | Riccardo Spagni | 1 | -1/+1 | |
2015-01-02 | year updated in license | Riccardo Spagni | 1 | -1/+1 | |
2014-10-24 | cmake: support 2.8.7 | Ben Boeckel | 1 | -2/+2 | |
Older versions of CMake support LINK_{PUBLIC,PRIVATE} while newer versions prefer PUBLIC and PRIVATE instead, but still support the LINK_ prefix. | |||||
2014-10-23 | cmake: handle private vs. public headers | Ben Boeckel | 1 | -2/+7 | |
2014-10-23 | cmake: refactor common code with libraries | Ben Boeckel | 1 | -9/+1 | |
2014-10-23 | cmake: put each library into its own directory | Ben Boeckel | 1 | -0/+59 | |
This cleans up the CMake code and shows patterns more easily (to be refactored in the next commit). |