tor/src/ext
Nick Mathewson c1d98c75e3 Merge branch 'maint-0.3.0' into maint-0.3.1 2018-01-03 08:59:59 -05:00
..
curve25519_donna Fix a set of variable-shadowing warnings in curve25519-donna.c 2016-07-28 10:03:29 -04:00
ed25519 Merge branch 'maint-0.3.0' into maint-0.3.1 2017-11-13 20:36:04 -05:00
keccak-tiny Improve keccak-tiny performance by 15% on LE intel 2017-03-14 14:20:15 -04:00
mulodi Fix a new compilation warning with broken-mulodi i386 clang builds. :( 2016-10-11 10:29:43 -04:00
rust@2402968008 Allow Rust build using locally supplied crates or crates.io 2017-05-19 08:47:11 -04:00
timeouts Fix the clz32 and clz64 settings on MSVC. 2017-12-20 09:37:18 -05:00
trunnel hs: Change trunnel prop224 cell's namespace 2017-04-11 13:46:41 -04:00
Makefile.nmake Clean up the MVSC nmake files so they work again. 2014-09-09 10:27:05 -04:00
OpenBSD_malloc_Linux.c Remove now-pointless SIZE_MAX stanza from OpenBSD_malloc_linux 2014-09-09 12:09:18 -04:00
README Raise libevent dependency to 2.0.10-stable or newer 2016-07-04 12:40:09 +02:00
byteorder.h Improve keccak-tiny performance by 15% on LE intel 2017-03-14 14:20:15 -04:00
csiphash.c Merge branch 'maint-0.2.9' into maint-0.3.0 2017-09-11 17:49:18 -04:00
ht.h Run the copyright update script. 2017-03-15 16:13:17 -04:00
include.am Make our ed25519 implementations no longer use openssl directly. 2017-03-31 10:04:44 -04:00
readpassphrase.c Don't call the system toupper or tolower. 2016-04-05 23:22:28 -04:00
siphash.h Siphash-2-4 is now our hash in nearly all cases. 2014-02-12 11:32:10 -05:00
strlcat.c Move strlcpy and strlcat into src/ext too 2012-10-12 17:14:28 -04:00
strlcpy.c Move strlcpy and strlcat into src/ext too 2012-10-12 17:14:28 -04:00
tinytest.c Add -Wmissing-variable-declarations, with attendant fixes 2016-06-11 10:11:54 -04:00
tinytest.h Upgrade to the latest version of tinytest. 2014-03-06 18:06:08 -05:00
tinytest_demo.c Replace operators used as macro arguments with OP_XX macros 2014-11-12 13:28:07 -05:00
tinytest_macros.h Fix numerous type errors in the unit tests 2014-05-08 13:08:13 -04:00
tor_queue.h Silence spurious clang warnings 2014-10-30 22:34:46 +11:00
tor_queue.txt Add a copy of the queue(3) manpage to the git repository. 2012-10-30 19:16:15 -04:00
tor_readpassphrase.h Don't call the system toupper or tolower. 2016-04-05 23:22:28 -04:00

README

OpenBSD_malloc_Linux.c:

    The OpenBSD malloc implementation, ported to Linux.  Used only when
    --enable-openbsd-malloc is passed to the configure script.

strlcat.c
strlcpy.c

    Implementations of strlcat and strlcpy, the more sane replacements
    for strcat and strcpy.  These are nonstandard, and some libc
    implementations refuse to add them for religious reasons.

ht.h

    An implementation of a hash table in the style of Niels Provos's
    tree.h.  Shared with Libevent.

tinytest.[ch]
tinytest_demos.c
tinytest_macros.h

    A unit testing framework. https://github.com/nmathewson/tinytest

tor_queue.h

    A copy of sys/queue.h from OpenBSD.  We keep our own copy rather
    than using sys/queue.h, since some platforms don't have a
    sys/queue.h, and the ones that do have diverged in incompatible
    ways.  (CIRCLEQ or no CIRCLEQ? SIMPLQ or STAILQ?)  We also rename
    the identifiers with a TOR_ prefix to avoid conflicts with
    the system headers.

curve25519_donna/*.c

    A copy of Adam Langley's curve25519-donna mostly-portable
    implementations of curve25519.

csiphash.c
siphash.h

    Marek Majkowski's implementation of siphash 2-4, a secure keyed
    hash algorithm to avoid collision-based DoS attacks against hash
    tables.

trunnel/*.[ch]

    Headers and runtime code for Trunnel, a system for generating
    code to encode and decode binary formats.

ed25519/ref10/*

    Daniel Bernsten's portable ref10 implementation of ed25519.
    Public domain.

ed25519/donna/*

    Andrew Moon's semi-portable ed25519-donna implementation of
    ed25519. Public domain.

keccak-tiny/

    David Leon Gil's portable Keccak implementation. CC0.

readpassphrase.[ch]

    Portable readpassphrase implementation from OpenSSH portable, version
    6.8p1.

timeouts/

    William Ahern's hierarchical timer-wheel implementation. MIT license.

mulodi/

    Contains an overflow-checking 64-bit signed integer multiply
    from LLVM's compiler_rt.  For some reason, this is missing from
    32-bit libclang in many places. Dual licensed MIT-license and
    BSD-like license; see mulodi/LICENSE.TXT.