Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-02-24 | cmake: require libsodium | tobtoht | 1 | -1/+1 | |
2023-06-28 | add crypto/generators for direct access to canonical fixed generators | koe | 1 | -0/+1 | |
2023-01-16 | Copyright: Update to 2023 | mj-xmr | 1 | -1/+1 | |
Co-authored-by: plowsof <plowsof@protonmail.com> extra files | |||||
2022-04-06 | CMake: Add missing headers via monero_find_all_headers macro | mj-xmr | 1 | -21/+1 | |
2022-03-04 | Copyright: Update to 2022 | mj-xmr | 1 | -1/+1 | |
2021-04-28 | cmake: set xcode file type | selsta | 1 | -0/+1 | |
2020-05-16 | Support for supercop ASM in wallet, and benchmark for supercop | Lee Clagett | 1 | -0/+3 | |
2020-05-06 | Update copyright year to 2020 | SomaticFanatic | 1 | -1/+1 | |
Update copyright year to 2020 | |||||
2019-09-25 | RandomX integration | Howard Chu | 1 | -0/+4 | |
Support RandomX PoW algorithm | |||||
2019-03-24 | Fix build on FreeBSD | Nathan Dorfman | 1 | -1/+1 | |
2019-03-20 | crypto: hmac_keccak added | Dusan Klinec | 1 | -0/+2 | |
2019-03-05 | Update 2019 copyright | binaryFate | 1 | -1/+1 | |
2019-03-05 | slow-hash: fix build on arm | moneromooo-monero | 1 | -1/+4 | |
2019-03-04 | crypto: plug CNv4 JIT into cn_slow_hash | moneromooo-monero | 1 | -2/+7 | |
Enabled by setting the MONERO_USE_CNV4_JIT env var to 1 | |||||
2018-08-23 | add and use constant time 32 byte equality function | moneromooo-monero | 1 | -0/+1 | |
2018-03-14 | device: untangle cyclic depenency | stoffu | 1 | -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. | |||||
2018-03-04 | Code modifications to integrate Ledger HW device into monero-wallet-cli. | cslashm | 1 | -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. | |||||
2018-01-26 | Update 2018 copyright | xmr-eric | 1 | -1/+1 | |
2018-01-10 | fix some link errors in debug mode for macos | stoffu | 1 | -0/+1 | |
2017-12-25 | Add a chacha20 variant to go with chacha8 | moneromooo-monero | 1 | -2/+2 | |
2017-05-23 | changed crypto to cncrypto so it generated libcncrypto | Gentian | 1 | -3/+3 | |
fix a cmakelist | |||||
2017-04-03 | IOS CMAKE build settings | Jaquee | 1 | -1/+1 | |
2017-02-21 | update copyright year, fix occasional lack of newline at line end | Riccardo Spagni | 1 | -1/+1 | |
2017-01-05 | Build wallet with Android NDK | MoroccanMalinois | 1 | -0/+11 | |
2016-09-26 | Dropped "bit" from bitmonero. | Randi Joseph | 1 | -2/+2 | |
2016-09-26 | Dropped "bit" from bitmonero. | Randi Joseph | 1 | -2/+2 | |
2016-09-18 | cmake: transitive deps and remove deprecated LINK_* | redfish | 1 | -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. | |||||
2016-09-04 | crypto,cmake: enable ASM mul impl on ARM; add cmake opt | redfish | 1 | -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. | |||||
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-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 | -16/+55 | |
This cleans up the CMake code and shows patterns more easily (to be refactored in the next commit). | |||||
2014-10-06 | build libunbound from external if no local libunbound or for static builds | Riccardo Spagni | 1 | -22/+1 | |
2014-10-06 | build libunbound from external if no local libunbound or for static builds | Riccardo Spagni | 1 | -22/+1 | |
2014-10-02 | fixed unbound static lib on mingw as libunbound.dll.a | Riccardo Spagni | 1 | -1/+5 | |
2014-10-02 | remove pthreads, successfully tested on gcc 4.9.1 without pthreads | Riccardo Spagni | 1 | -1/+5 | |
2014-10-02 | fixed unbound static lib on mingw as libunbound.dll.a | Riccardo Spagni | 1 | -1/+5 | |
2014-10-02 | remove pthreads, successfully tested on gcc 4.9.1 without pthreads | Riccardo Spagni | 1 | -1/+5 | |
2014-09-29 | dependencies enforced, send que error message log level moved | Riccardo Spagni | 1 | -5/+5 | |
2014-09-24 | redo FindUnbound.cmake | Riccardo Spagni | 1 | -28/+26 | |
2014-09-24 | fixed cmake folder | Riccardo Spagni | 1 | -0/+0 | |
2014-09-24 | added tomerkon's GPG key, cmake folder fix | Riccardo Spagni | 1 | -0/+0 | |
2014-09-23 | Updated CMake files -- added libunbound linker flag | Thomas Winget | 1 | -19/+29 | |
CMake config file written, but was unable to test/get it working properly because of a bug in CMake with functions related to find_package. Simple "-lunbound" flag used in its stead for now. May not build on non-Linux systems, not sure yet. | |||||
2014-07-23 | License updated to BSD 3-clause | fluffypony | 1 | -2/+32 | |
2014-03-03 | moved all stuff to github | Antonio Juarez | 1 | -0/+15 | |