tor/src/ext
Nick Mathewson 4a5c1584fe update tor-rust-dependencies submodule 2018-05-16 09:16:47 -04:00
..
curve25519_donna Fix a set of variable-shadowing warnings in curve25519-donna.c 2016-07-28 10:03:29 -04:00
ed25519 refactor: Remove unnecessary `#include "crypto.h"` throughout codebase. 2018-04-06 22:49:18 +00:00
keccak-tiny crypto: Refactor (P)RNG functionality into new crypto_rand module. 2018-04-06 21:45:28 +00:00
mulodi Fix a new compilation warning with broken-mulodi i386 clang builds. :( 2016-10-11 10:29:43 -04:00
rust@aa37fb84fb update tor-rust-dependencies submodule 2018-05-16 09:16:47 -04:00
timeouts Fixup timing wheel warnings related to recent WHEEL_BIT change. 2018-04-17 12:45:53 -04:00
trunnel Re-run trunnel. Cosmetic changes only. 2017-08-24 16:13:01 -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 On shutdown, mark openssl as uninitialized. 2018-01-11 13:00:15 -05:00
ht.h sched: Groundwork before KIST implementation 2017-09-15 11:40:59 -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 On shutdown, mark openssl as uninitialized. 2018-01-11 13:00:15 -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.