Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-26 | Update copyright to 2018. | iphydf | |
2018-07-05 | Make tox.c unambiguously parseable. | iphydf | |
Rules: 1. Constants are uppercase names: THE_CONSTANT. 2. SUE[1] types start with an uppercase letter and have at least one lowercase letter in it: The_Type, THE_Type. 3. Function types end in "_cb": tox_friend_connection_cb. 4. Variable and function names are all lowercase: the_function. This makes it easier for humans reading the code to determine what an identifier means. I'm not convinced by the enum type name change, but I don't know a better rule. Currently, a lot of enum types are spelled like constants, which is confusing. [1] struct/union/enum | |||
2018-06-25 | Remove utils.c and utils.h from toxencryptsave build. | iphydf | |
These were deleted earlier. | |||
2018-06-25 | Fixes to the imported sodium sources to compile without warnings. | iphydf | |
2018-05-20 | Move system header includes from network.h to network.c | iphydf | |
2018-01-30 | Use nullptr as NULL pointer constant instead of NULL or 0. | iphydf | |
This changes only code, no string literals or comments. | |||
2018-01-28 | Avoid clashes with "build" directories on case-insensitive file systems. | iphydf | |
2018-01-22 | Publish a single public BUILD target for c-toxcore. | iphydf | |
2018-01-21 | Make BUILD files more finely-grained. | iphydf | |
This allows us to precisely see which libraries depend on which and lets us split them up more, if necessary. | |||
2018-01-18 | Use C99 standard in bazel builds. | iphydf | |
2018-01-18 | Add bazel build scripts for c-toxcore. | iphydf | |
This allows us and users to reproducibly build verified versions of the library with checksums. It will power the toktok-stack continuous build with checked-in checksums at specific git revisions. | |||
2017-12-29 | Change toxencryptsave API to never overwrite pass keys. | iphydf | |
2017-10-27 | Adjust docs of few toxencrypt function to the code | Diadlo | |
Add correct information about behaviour if input pointer is NULL Fix #590 | |||
2017-03-30 | Implement missing TES constant functions. | iphydf | |
Fixes #503. | |||
2017-01-19 | Update license headers and remove redundant file name comment. | iphydf | |
"All rights reserved" was incorrect. The project was licensed under GPL3, which means a lot of rights are licensed to everybody in the world, i.e. not reserved to the "Tox Project". | |||
2017-01-18 | Setup autotools to read .so version info from a separate file | Sergey 'Jin' Bostandzhyan | |
We want to use the same libtool style .so versions in both build systems, ideally both systems should read the version information from the same configuration file. This commit introduces an so.version configuration file and sets up the autotools to use it. The version numbers in so.version define the ABI compatibility and should be updated prior to each release. implements #323 | |||
2017-01-12 | Clarify that the pass key `new` function can fail. | iphydf | |
Also clarify that passwords can be empty or NULL. | |||
2017-01-08 | Set up autotools build to build against vanilla NaCl. | iphydf | |
Fixes #363. | |||
2016-12-22 | Improve documentation of crypto_core. | iphydf | |
2016-12-22 | Wrap all sodium/nacl functions in crypto_core.c. | iphydf | |
2016-12-19 | Remove unused get/set salt/key functions from toxencryptsave. | iphydf | |
2016-12-17 | docs(TES): correct docs to reflect how many bytes fns actually require | Zetok Zalbavar | |
2016-12-14 | Fix unresolved reference in toxencryptsave API. | iphydf | |
Also, make sure this won't happen again by checking for it in format-source. | |||
2016-12-13 | Add apidsl file for toxencryptsave. | iphydf | |
This breaks the toxencryptsave API. It hides the Tox_Pass_Key struct definition. | |||
2016-12-09 | Improve toxencryptsave documentation | Maxim Biro | |
2016-09-28 | v0.0.0 => v0.0.1 | Gregory Mullen (grayhatter) | |
2016-09-02 | Do not use `else` after `return`. | iphydf | |
http://llvm.org/docs/CodingStandards.html#use-early-exits-and-continue-to-simplify-code | |||
2016-09-01 | Sort #includes in all source files. | iphydf | |
2016-08-31 | Add braces to all if statements. | iphydf | |
2016-08-12 | Check code formatting on Travis. | iphydf | |
We run astyle on Travis and check if there is a diff. The build terminates if git finds a difference. | |||
2016-02-26 | Add missing files so that archive for make dist is complete | Roman Yepishev | |
2016-02-13 | lets define this correctlly instead | Gregory Mullen (GrayHatter) | |
2016-02-13 | added the dropped ; | Gregory Mullen (GrayHatter) | |
2016-02-13 | added versioning to toxencryptsave | Gregory Mullen (GrayHatter) | |
2016-01-30 | Fixes. | irungentoo | |
Fixed bug from merged PR. Don't build useless files when building with libsodium. | |||
2015-05-27 | Allow empty keys in toxencryptsave. | irungentoo | |
2015-05-26 | These parameters should have been const. | irungentoo | |
2015-04-01 | Merge branch 'master' of https://github.com/dubslow/toxcore | irungentoo | |
2015-04-01 | Enough pestering me please | Dubslow | |
2015-03-31 | Make keys into a struct for more programmer safety | Dubslow | |
2015-03-31 | Fix minor code duplication | Dubslow | |
2015-03-31 | Merge branch 'master' of https://github.com/dubslow/toxcore | irungentoo | |
2015-03-31 | Fix toxencryptsave to be consistent with new_api | Dubslow | |
Upon my own decision, the two tox_encryped_new convenience functions were removed due to basically needing two different sets of error codes. At iphydf's suggestion the corresponding tox_get_encrypted_savedata convenience functions were removed as well. | |||
2015-03-26 | Making tox_encrypted_new() use the same error codes as tox_new was a bad idea. | irungentoo | |
They now have their own error codes. | |||
2015-03-17 | Save function renamed to tox_get_savedata() | irungentoo | |
2015-03-06 | Fixed typedef. | irungentoo | |
2015-03-01 | Merge branch 'new_api' of https://github.com/dubslow/toxcore into new_api | irungentoo | |
2015-02-27 | Realign toxencryptsave with new API | Dubslow | |
2015-02-14 | A bit of new api work done. | irungentoo | |
2015-01-15 | Fixed warning. | irungentoo | |