summaryrefslogtreecommitdiff
path: root/external
Commit message (Collapse)AuthorAgeFilesLines
* easylogging++: fix crash with reentrant loggingmoneromooo-monero2020-07-301-0/+11
|
* easylogging++: sanitize log payloadmoneromooo-monero2020-05-191-0/+96
| | | | | | Some of it might be coming from untrusted sources Reported by itsunixiknowthis
* trezor: adapt to new passphrase mechanismDusan Klinec2020-04-271-0/+0
| | | | | | | | | - choice where to enter passphrase is now made on the host - use wipeable string in the comm stack - wipe passphrase memory - protocol optimizations, prepare for new firmware version - minor fixes and improvements - tests fixes, HF12 support
* easylogging++: fix 'ELPP_OS_EMSCRIPTEN is not defined' warningxiphon2020-03-111-0/+2
|
* Merge pull request #6209Alexander Blair2020-02-281-2/+5
|\ | | | | | | 94853487 easylogging++: add emscripten support (moneromooo-monero)
| * easylogging++: add emscripten supportmoneromooo-monero2019-12-021-2/+5
| | | | | | | | | | This is upstream, but seems to have got lost in conflicts when merging support for BSDs or android.
* | Merge pull request #6037luigi11112019-12-121-1/+1
|\ \ | |/ |/| | | f49a8ca easylogging++: add screen.xterm-256color to the 'allow colour' TERM list (moneromooo-monero)
| * easylogging++: add screen.xterm-256color to the "allow colour" TERM listmoneromooo-monero2019-10-261-1/+1
| |
* | RandomX: Update to v1.1.6tevador2019-10-301-0/+0
|/
* Merge pull request #6016luigi11112019-10-241-0/+2
|\ | | | | | | afcfb3b easylogging++: windows does not need terminal colour support (moneromooo-monero)
| * easylogging++: windows does not need terminal colour supportmoneromooo-monero2019-10-241-0/+2
| |
* | RandomX: update to v1.1.5tevador2019-10-231-0/+0
|/
* RandomX: update to v1.1.4tevador2019-10-131-0/+0
| | | | | | | * Faster cache initialization with SSSE3/AVX2 * Automatic detection of CPU capabilities in RandomX * Fixed a possible out-of-bounds access in superscalar program generator * Use MONERO_RANDOMX_UMASK to manually disable RandomX flags in monerod
* easylogging++: fix build with glibcmoneromooo-monero2019-10-081-0/+2
|
* Merge pull request #5948luigi11112019-10-081-0/+0
|\ | | | | | | | | | | 1c600a4 Fix randomx cache selection for RPCs (hyc) 2675cf4 Update to RandomX v1.1.3, simplify (hyc) f54301d Fix for miners on reorg (hyc)
| * Update to RandomX v1.1.3, simplifyHoward Chu2019-10-051-0/+0
| | | | | | | | | | | | We don't need to detect if the cache has changed, just always call to set it on the VM. The call will be a no-op if the cache hasn't changed.
* | Merge pull request #5927luigi11112019-10-082-3/+9
|\ \ | | | | | | | | | 6d378d9 easylogging++: always omit ANSI codes when colour is not supported (moneromooo-monero)
| * | easylogging++: always omit ANSI codes when colour is not supportedmoneromooo-monero2019-09-242-3/+9
| | |
* | | Merge pulll request #5924luigi11112019-10-081-1/+1
|\ \ \ | |_|/ |/| | | | | 5bcbd97 Disable easylogging crash log on non-glibc libraries (omartijn)
| * | Disable easylogging crash log on non-glibc librariesMartijn Otto2019-09-231-1/+1
| | | | | | | | | | | | | | | | | | - easylogging assumes certain non-standard headers and functions - these function only exist in glibc - compiling under linux without glibc thus broke compilation
* | | Merge pull request #5549Riccardo Spagni2019-09-252-0/+1
|\ \ \ | | | | | | | | | | | | 81c2ad6d RandomX integration (Howard Chu)
| * | | RandomX integrationHoward Chu2019-09-252-0/+1
| | |/ | |/| | | | | | | Support RandomX PoW algorithm
* | | Revert "easylogging++: ensure it finds boost headers"moneromooo-monero2019-09-241-1/+0
| | | | | | | | | | | | This reverts commit 9a95827ea72574c3e861aa3167c0b96b9bae64b3.
* | | easylogging++: split strings manuallymoneromooo-monero2019-09-241-2/+13
| | | | | | | | | | | | Avoids cmake skullduggery
* | | easylogging++: ensure it finds boost headersmoneromooo-monero2019-09-241-0/+1
|/ /
* / Properly format multiline logsmoneromooo-monero2019-09-162-40/+138
|/ | | | | As a side effect, colouring on Windows should now work regardless of version
* Merge pull request #5857luigi11112019-09-082-2/+4
|\ | | | | | | e907305 ITS#9068 fix backslash escaping (hyc)
| * ITS#9068 fix backslash escapingHoward Chu2019-08-262-2/+4
| | | | | | | | | | mdb_load wasn't properly inserting escaped backslashes into the data. mdb_dump wasn't escaping backslashes when generating printable output.
* | boost: fix little/big endian compatibilitymoneromooo-monero2019-09-042-2/+4
|/ | | | | | | | | | | | | When no little/big endian flag is given to the writer, it stores data in host endianness. When loading, if no flag is set, it also assumes host endianness. This works as long as the loading and writing are done on machines with the same endianness. We change this to default to little endian when saving. This will cause the loader to see the little endian flag, and swap endianness when loading on a big endian machine. Similarly, writing on a big endian machine will swap on save, and a little endian machine will load little endian data.
* Merge pull request #5777luigi11112019-08-211-0/+2
|\ | | | | | | 757b789 Define _WANT_SEMUN for FreeBSD to ensure union semun is defined (odonnellnoel)
| * Define _WANT_SEMUN for FreeBSD to ensure `union semun` is definedNoel O'Donnell2019-07-271-0/+2
| | | | | | | | Build was failing on GhostBSD (FreeBSD-13.0) because `union semun` is switched off by default. Defining _WANT_SEMUN switches it on.
* | Merge pull request #5735luigi11112019-08-212-15/+26
|\ \ | | | | | | | | | 32b0560 easylogging++: weed out most calls to allowed without locking (moneromooo-monero)
| * | easylogging++: weed out most calls to allowed without lockingmoneromooo-monero2019-08-192-15/+26
| |/
* | Merge pull request #5748luigi11112019-08-213-6/+6
|\ \ | |/ |/| | | b350726 boost: update obsolete usage of endian API (moneromooo-monero)
| * boost: update obsolete usage of endian APImoneromooo-monero2019-07-093-6/+6
| |
* | Merge pull request #5594luigi11112019-07-241-0/+0
|\ \ | |/ |/| | | f074b6b device: show address on device display (ph4r05)
| * device: show address on device displayDusan Klinec2019-06-171-0/+0
| | | | | | | | | | | | | | | | | | - Trezor: support for device address display (subaddress, integrated address) - Wallet::API support added - Simplewallet: - address device [<index>] - address new <label> // shows address on device also - integrated_address [device] <payment_id|address> // new optional "device" arg to display also on the device
* | miniupnpc: update to build on BSDmoneromooo-monero2019-06-081-0/+0
|/
* Merge pull request #5442Riccardo Spagni2019-04-162-5/+22
|\ | | | | | | 428249c5 easylogging++: minimal stdout logging format (moneromooo-monero)
| * easylogging++: minimal stdout logging formatmoneromooo-monero2019-04-142-5/+22
| | | | | | | | | | It's a bit of a hack, but doing it right would need a lot of changes to the easylogging++ source.
* | Merge pull request #5407Riccardo Spagni2019-04-162-15/+21
|\ \ | | | | | | | | | 66d73d2f easylogging++: update to v9.96.7 (moneromooo-monero)
| * | easylogging++: update to v9.96.7moneromooo-monero2019-04-072-15/+21
| |/
* | Merge pull request #5440Riccardo Spagni2019-04-151-0/+2
|\ \ | | | | | | | | | b6420e12 lmdb: catch non-LMDB negative errors before strerror (moneromooo-monero)
| * | lmdb: catch non-LMDB negative errors before strerrormoneromooo-monero2019-04-141-0/+2
| |/ | | | | | | That should hopefully shut coverity up
* / Fix linker issues using easyloggingMartijn Otto2019-04-101-1/+3
|/
* Merge pull request #5211Riccardo Spagni2019-03-211-0/+0
|\ | | | | | | | | | | 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)
| * device/trezor: HF10 support added, wallet::APIDusan Klinec2019-03-201-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | - import only key images generated by cold signing process - wallet_api: trezor methods added - wallet: button request code added - const added to methods - wallet2::get_tx_key_device() tries to decrypt stored tx private keys using the device. - simplewallet supports get_tx_key and get_tx_proof on hw device using the get_tx_key feature - live refresh enables refresh with trezor i.e. computing key images on the fly. More convenient and efficient for users. - device: has_ki_live_refresh added - a thread is watching whether live refresh is being computed, if not for 30 seconds, it terminates the live refresh process - switches Trezor state
* | Merge pull request #5191Riccardo Spagni2019-03-171-0/+0
|\ \ | | | | | | | | | 1677fb06 unbound: update to get the redefinition fix (moneromooo-monero)
| * | unbound: update to get the redefinition fixmoneromooo-monero2019-02-241-0/+0
| | |
* | | Update 2019 copyrightbinaryFate2019-03-054-4/+4
| |/ |/|