- Jul 31, 2018
-
-
Nick Mathewson authored
Notably, there's a test to make sure that it round-trips with OpenSSL, if OpenSSL is enabled.
-
Nick Mathewson authored
-
Nick Mathewson authored
We only ever need this to get us a DH ephemeral key object, so make a function that does just that.
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
This is comparatively straightforward too, except for a couple of twists: * For as long as we're building with two crypto libraries, we want to seed _both_ their RNGs, and use _both_ their RNGs to improve the output of crypto_strongest_rand() * The NSS prng will sometimes refuse to generate huge outputs. When it does, we stretch the output with SHAKE. We only need this for the tests.
-
Nick Mathewson authored
-
Nick Mathewson authored
This was a fairly straightforward port, once I realized which layer I should be calling into.
-
- Jul 13, 2018
-
-
Nick Mathewson authored
-
Nick Mathewson authored
We need this in our unit tests, since otherwise NSS will notice we've forked and start cussing us out. I suspect we'll need a different hack for daemonizing, but this should be enough for tinytest to work.
-
Nick Mathewson authored
This is largely conjectural, based on online documentation for NSS and NSPR.
-
- Jul 11, 2018
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
These are now part of crypto_init.c. The openssl-only parts now live in crypto_openssl_mgt.c. I recommend reviewing this patch with -b and --color-moved.
-
Nick Mathewson authored
When it is set, include the NSS headers and libraries as appropriate. Doesn't actually use them yet, though.
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
That place is git-revision.c; git-revision.c now lives in lib/log. Also fix the compilation rules so that all object files that need micro-revision.i depend on it.
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
-
- Jul 10, 2018
-
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
Fun fact: these files used to be called log.[ch] until we ran into conflicts with systems having a log.h file. But now that we always include "lib/log/log.h", we should be fine.
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
(Bugfixes on bugs that have never been in a released version don't need a changes file.)
-
Nick Mathewson authored
-
Nick Mathewson authored
-
Nick Mathewson authored
(Almost none of Tor should actually need to touch the platform resolver.)
-
Nick Mathewson authored
This lets us cut the dependency from address.c to resolve.c: the address.c module now has no paths to the libc resolver in it.
-
Nick Mathewson authored
This function has a nasty API, since whether or not it invokes the resolver depends on whether one of its arguments is NULL. That's a good way for accidents to happen. This patch incidentally makes tor-resolve support socks hosts on IPv6.
-
Nick Mathewson authored
-