Commit message (Expand) | Author | Age | |
---|---|---|---|
* | Rename log.h to torlog.h•••This should make us conflict less with system files named "log.h". Yes, we shouldn't have been conflicting with those anyway, but some people's compilers act very oddly. The actual change was done with one "git mv", by editing Makefile.am, and running find . -name '*.[ch]' | xargs perl -i -pe 'if (/^#include.*\Wlog.h/) {s/log.h/torlog.h/; }' | Nick Mathewson | 2010-07-09 |
* | clean up whitespace in src/tools | Nick Mathewson | 2010-05-20 |
* | Make expand_filename into a tor_strdup() alias on windows.•••On Windows, we don't have a notion of ~ meaning "our homedir", so we were deliberately using an #ifdef to avoid calling expand_filename() in multiple places. This is silly: The right place to turn a function into a no-op on a single platform is in the function itself, not in every single call-site. | Nick Mathewson | 2010-02-22 |
* | Expand homedirs in paths passed to tor-checkkey•••This is so that coverity stops complaining about using a user-supplied string with the open() syscall. Let's see if it works. | Sebastian Hahn | 2010-02-22 |
* | Include util.h and log.h as relative paths.•••This shouldn't be necessary, but apparently the Android cross-compiler doesn't respect -I as well as it should. (-I is supposed to add to the *front* of the search path. Android's gcc wrapper apparently likes to add to the end. This is broken, but we need to work around it.) | Nathan Freitas | 2009-09-29 |
* | Add support for dynamic OpenSSL hardware crypto acceleration engines. | Martin Peck | 2009-05-23 |
* | Enhance tor-checkkey tool so it can generate key hashes too.•••svn:r18478 | Nick Mathewson | 2009-02-10 |
* | #include "orconfig.h" in tor-checkkey.c to see if we can resolve•••an obscure compile warning on solaris svn:r17453 | Roger Dingledine | 2008-12-02 |
* | r15558@tombo: nickm | 2008-05-09 04:35:12 -0400••• New (temporary) tool to dump the modulus of a key. May help with a project of weasel's. svn:r14580 | Nick Mathewson | 2008-05-09 |