monero/src/cryptonote_core
stoffu 27a196b126
device: untangle cyclic depenency
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-14 21:00:15 +09:00
..
blockchain_storage_boost_serialization.h Update 2018 copyright 2018-01-26 10:03:20 -05:00
blockchain.cpp Merge pull request #3371 2018-03-14 13:37:25 +02:00
blockchain.h Stagenet 2018-03-05 11:55:05 +09:00
CMakeLists.txt Code modifications to integrate Ledger HW device into monero-wallet-cli. 2018-03-04 12:54:53 +01:00
cryptonote_core.cpp Stagenet 2018-03-05 11:55:05 +09:00
cryptonote_core.h Stagenet 2018-03-05 11:55:05 +09:00
cryptonote_tx_utils.cpp device: untangle cyclic depenency 2018-03-14 21:00:15 +09:00
cryptonote_tx_utils.h cryptonote_tx_utils: fixed logic bug in get_destination_view_key_pub 2018-01-29 17:05:07 +09:00
tx_pool.cpp txpool: Don't bail out when blob_size == tx_size_limit 2018-02-16 16:27:08 +01:00
tx_pool.h tx_pool: add a max pool size, settable with --max-txpool-size 2018-02-07 13:42:12 +00:00