Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-12 | Update copyrights to 2021, using "make update-copyright" | Nick Mathewson | |
2020-01-08 | It's 2020. Update the copyright dates with "make update-copyright" | Nick Mathewson | |
2019-01-16 | Bump copyright date to 2019 | Nick Mathewson | |
2018-07-31 | Use NSS's digest code in Tor. | Nick Mathewson | |
This was a fairly straightforward port, once I realized which layer I should be calling into. | |||
2018-07-11 | Rename crypto.c to crypto_cipher.c (since that's all it still has.) | Nick Mathewson | |
2018-07-05 | Fix every include path changed in the previous commit (automated) | Nick Mathewson | |
I am very glad to have written this script. | |||
2018-07-05 | Remove util.h | Nick Mathewson | |
Inline its contents (which were all includes) into or.h, and some of its contents into other places that didn't include or.h at all. | |||
2018-06-29 | Eliminate compat.h | Nick Mathewson | |
2018-06-21 | Rectify include paths (automated) | Nick Mathewson | |
2018-06-20 | Run rectify_include_paths.py | Nick Mathewson | |
2018-06-20 | Update copyrights to 2018. | Nick Mathewson | |
2017-03-15 | Run the copyright update script. | Nick Mathewson | |
2016-06-20 | Make base16_decodes return number of decoded bytes | nikkolasg | |
base16_decodes() now returns the number of decoded bytes. It's interface changes from returning a "int" to a "ssize_t". Every callsite now checks the returned value. Fixes #14013 Signed-off-by: David Goulet <dgoulet@torproject.org> | |||
2016-05-16 | Mark unreachable lines in crypto_curve25519.c | Nick Mathewson | |
Also, resolve a bug in test_ntor_cl.c | |||
2016-02-27 | Update the copyright year. | Nick Mathewson | |
2015-12-08 | Fix memory leak in ntor test | cypherpunks | |
2015-02-02 | Merge remote-tracking branch 'public/bug9635_warnings_025' | Nick Mathewson | |
Conflicts: src/test/test.c | |||
2015-01-02 | Bump copyright dates to 2015, in case someday this matters. | Nick Mathewson | |
2014-10-28 | Add another year to our copyright dates. | Nick Mathewson | |
Because in 95 years, we or our successors will surely care about enforcing the BSD license terms on this code. Right? | |||
2014-10-27 | Remove configure option to disable curve25519 | Sebastian Hahn | |
By now, support in the network is widespread and it's time to require more modern crypto on all Tor instances, whether they're clients or servers. By doing this early in 0.2.6, we can be sure that at some point all clients will have reasonable support. | |||
2014-10-16 | Downgrade 'invalid result from curve25519 handshake: 4' warning | Nick Mathewson | |
Also, refactor the way we handle failed handshakes so that this warning doesn't propagate itself to "onion_skin_client_handshake failed" and "circuit_finish_handshake failed" and "connection_edge_process_relay_cell (at origin) failed." Resolves warning from 9635. | |||
2013-02-11 | Resolve memory leaks in the unit tests and benchmarks (found by coverity) | Nick Mathewson | |
These shouldn't really matter, but it's nice to be leak-free. | |||
2013-01-16 | Update the copyright date to 201. | Nick Mathewson | |
2013-01-03 | Add reference implementation for ntor, plus compatibility test | Nick Mathewson | |
Before I started coding ntor in C, I did another one in Python. Turns out, they interoperate just fine. |