aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/memwipe.cpp
Commit message (Collapse)AuthorAgeFilesLines
* tests: include <iomanip> where using std::setfilljeffro2562025-02-091-0/+1
|
* Copyright: Update to 2022mj-xmr2022-03-041-1/+1
|
* Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
| | | | Update copyright year to 2020
* Update 2019 copyrightbinaryFate2019-03-051-1/+1
|
* Readd copyright starting datexmr-eric2018-01-261-1/+1
|
* Update 2018 copyrightxmr-eric2018-01-261-1/+1
|
* Merge pull request #3082Riccardo Spagni2018-01-251-1/+1
|\ | | | | | | 8b50209c fix for warning (Onur Altun)
| * fix for warningOnur Altun2018-01-081-1/+1
| | | | | | | | monero/tests/unit_tests/memwipe.cpp:50:8: Warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else] if (wipe) ASSERT_TRUE(memcmp(quux, "bar", 3));
* | move memwipe to epee to avoid common<->crypto circular dependenciesmoneromooo-monero2018-01-101-1/+1
|/
* unit_tests: fix memwipe test comparisonmoneromooo-monero2017-12-171-1/+1
| | | | | | free might overwrite the memory, so we can't expect to see the NULs we overwrote with, but at least we shouldn't see the original data.
* add a memwipe functionmoneromooo-monero2017-11-271-0/+64
It's meant to avoid being optimized out memory_cleanse lifted from bitcoin