aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2014-09-25Add a reference implementation of our ed25519 modificationsNick Mathewson
2014-09-25Add the pure-python ed25519 implementation, for testing.Nick Mathewson
2014-09-25More documentation for ed25519 stuff.Nick Mathewson
2014-09-25Fix linux compilation of ed25519_ref10Nick Mathewson
2014-09-25Draft implementation for ed25519 key blinding, as in prop224Nick Mathewson
2014-09-25Add curve25519->ed25519 key conversion per proposal 228Nick Mathewson
2014-09-25Support for writing ed25519 public/private components to disk.Nick Mathewson
2014-09-25Add encode/decode functions for ed25519 public keysNick Mathewson
2014-09-25Restore the operation of extra_strong in ed25519_secret_key_generateNick Mathewson
2014-09-25Another ed25519 tweak: store secret keys in expanded formatNick Mathewson
2014-09-25Fix API for ed25519_ref10_open()Nick Mathewson
2014-09-25Tweak ed25519 ref10 signing interface to use less space.Nick Mathewson
2014-09-25Tweak ref10 keygen APIs to be more sane.Nick Mathewson
2014-09-25Add Ed25519 support, wrappers, and tests.Nick Mathewson
2014-08-26ed25519_ref10: use uint64_t and int64_t, not long longNick Mathewson
2014-08-26Add headers as needed to make ed25519_ref10 compile.Nick Mathewson
2014-08-26Add some explicit casts as needed to make ed25519_ref10 compileNick Mathewson
2014-08-26Integrate ed25519_ref10 into our build system.Nick Mathewson
2014-08-26Add the ed25519 ref10 code verbatim from supercop-20140622Nick Mathewson
2014-08-26Merge remote-tracking branch 'public/bug10163'Nick Mathewson
2014-08-25Remove the assigned-but-unused chosen_named_idx local variableNick Mathewson
2014-08-25Fix another memory leak case in sandbox.c:prot_strings()Nick Mathewson
2014-08-24Use the ARRAY_LENGTH macro more consistently.Nick Mathewson
2014-08-24Remove the non-implemented versions of the sandbox _array() functionsNick Mathewson
2014-08-24Whitespace fixesNick Mathewson
2014-08-24Terser ways to sandbox-allow related filenamesNick Mathewson
2014-08-24Merge branch 'bug11792_1_squashed'Nick Mathewson
2014-08-24When looking for conns to close, count the age of linked queued dataNick Mathewson
2014-08-24Kill non-tunneled directory connections when handling OOM.Nick Mathewson
2014-08-24Count zlib buffer memory towards OOM totals.Nick Mathewson
2014-08-22Tidy status handling in rendservice.cNick Mathewson
2014-08-21fix memory leak on failure in sandbox.c:prot_strings()Nick Mathewson
2014-08-21Store sandbox params as char *, since that's what they are.Nick Mathewson
2014-08-21Check for duplicate arguments to tor-gencertNick Mathewson
2014-08-21Mark one use of networkstatus_check_document_signature as (void)Nick Mathewson
2014-08-21remove meaningless checks for chunks==NULL in dirserv stuffNick Mathewson
2014-08-21Suppress coverity warning about overflowing in safe_mem_is_zeroNick Mathewson
2014-08-21Avoid performing an assert on an always-true valueNick Mathewson
2014-08-21Suppress coverity warning about overflowing in tor_memeq.Nick Mathewson
2014-08-21Check return values for fcntl in tor_spawn_background.Nick Mathewson
2014-08-21Allow rend_service_intro_free to get called with NULLNick Mathewson
2014-08-21Remove a dead check for errmsg in handle_control_authenticateNick Mathewson
2014-08-21Add a missing goto to an unusable branch and make the branch LD_BUG.Nick Mathewson
2014-08-21Explicitly cast when dividing ints then implicitly casting to double.Nick Mathewson
2014-08-21Fix memory leaks in test_entrynodes.cNick Mathewson
2014-08-21Make the two branches of tor_tls_used_v1_handshake into one.Nick Mathewson
2014-08-20Merge branch 'bug12205_take2_squashed'Nick Mathewson
2014-08-20Whitespace fixesNick Mathewson
2014-08-20Small cleanups to test_entry_is_time_to_retryNick Mathewson
2014-08-20Unit testing entry_is_time_to_retry().rl1987