summaryrefslogtreecommitdiff
path: root/toxencryptsave/crypto_pwhash_scryptsalsa208sha256
AgeCommit message (Collapse)Author
2020-05-02Add a check that we don't have any unused functions.iphydf
This check puts all of our code in a C++ anonymous namespace, which is effectively making all functions `static`. This allows the compiler to determine that a function is unused, so we can delete it.
2020-04-16Remove tokstyle exemptions from build files.iphydf
We put some tokstyle exemptions into the source files themselves, instead. This way we can check some of the code in those files, and more in the future when tokstyle supports more constructs (like apidsl). Also: hacked ping_array.api.h to not emit `_array` as parameter names. We'll need to fix apidsl to do this better. This works for now.
2018-09-14Standardise header guards.iphydf
Using the full path including the repo name.
2018-06-25Fixes to the imported sodium sources to compile without warnings.iphydf
2014-09-13Properly ported a toxencryptsave function to NaCl.irungentoo
removed now useless files.
2014-09-12sigh... forgot to add very necessary files...dubslow
2014-09-12encrypted save fully work with both libsodium and nacldubslow
they both reliably pass "make check"
2014-09-09compiling against nacl seems to break VANILLA_NACL...Dubslow