aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* CMake: Add missing headers via monero_find_all_headers macromj-xmr2022-04-061-21/+1
|
* Copyright: Update to 2022mj-xmr2022-03-041-1/+1
|
* cmake: set xcode file typeselsta2021-04-281-0/+1
|
* Support for supercop ASM in wallet, and benchmark for supercopLee Clagett2020-05-161-0/+3
|
* Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
| | | | Update copyright year to 2020
* RandomX integrationHoward Chu2019-09-251-0/+4
| | | | Support RandomX PoW algorithm
* Fix build on FreeBSDNathan Dorfman2019-03-241-1/+1
|
* Merge pull request #5211Riccardo Spagni2019-03-211-0/+2
|\ | | | | | | | | | | c9b13fbb tests/trezor: HF9 and HF10 tests (Dusan Klinec) a1fd1d49 device/trezor: HF10 support added, wallet::API (Dusan Klinec) d74d26f2 crypto: hmac_keccak added (Dusan Klinec)
| * crypto: hmac_keccak addedDusan Klinec2019-03-201-0/+2
| |
* | Update 2019 copyrightbinaryFate2019-03-051-1/+1
|/
* slow-hash: fix build on armmoneromooo-monero2019-03-051-1/+4
|
* crypto: plug CNv4 JIT into cn_slow_hashmoneromooo-monero2019-03-041-2/+7
| | | | Enabled by setting the MONERO_USE_CNV4_JIT env var to 1
* add and use constant time 32 byte equality functionmoneromooo-monero2018-08-231-0/+1
|
* device: untangle cyclic depenencystoffu2018-03-141-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* Code modifications to integrate Ledger HW device into monero-wallet-cli.cslashm2018-03-041-0/+2
| | | | | | | | | | | | | | | | | | | 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.
* Update 2018 copyrightxmr-eric2018-01-261-1/+1
|
* fix some link errors in debug mode for macosstoffu2018-01-101-0/+1
|
* Add a chacha20 variant to go with chacha8moneromooo-monero2017-12-251-2/+2
|
* changed crypto to cncrypto so it generated libcncryptoGentian2017-05-231-3/+3
| | | | fix a cmakelist
* IOS CMAKE build settingsJaquee2017-04-031-1/+1
|
* update copyright year, fix occasional lack of newline at line endRiccardo Spagni2017-02-211-1/+1
|
* Build wallet with Android NDKMoroccanMalinois2017-01-051-0/+11
|
* Dropped "bit" from bitmonero.Randi Joseph2016-09-261-2/+2
|
* cmake: transitive deps and remove deprecated LINK_*redfish2016-09-181-0/+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.
* crypto,cmake: enable ASM mul impl on ARM; add cmake optredfish2016-09-041-0/+10
| | | | | | This was disabled earlier as part of diagnosing failing tests on ARM, which turned out to be due to aliasing, fixed by adding -fno-strict-aliasing. So, re-enabling it back.
* updated copyright yearRiccardo Spagni2015-12-311-1/+1
|
* year updated in licenseRiccardo Spagni2015-01-021-1/+1
|
* cmake: handle private vs. public headersBen Boeckel2014-10-231-2/+7
|
* cmake: refactor common code with librariesBen Boeckel2014-10-231-9/+1
|
* cmake: put each library into its own directoryBen Boeckel2014-10-231-0/+79
This cleans up the CMake code and shows patterns more easily (to be refactored in the next commit).