Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | isspace and friends take an int. solaris cares. | Roger Dingledine | 2004-03-19 |
| | | | | svn:r1303 | ||
* | more pesky tabs | Roger Dingledine | 2004-03-12 |
| | | | | svn:r1265 | ||
* | Make OP work on windows! (Also misc logging tweaks) | Nick Mathewson | 2004-03-11 |
| | | | | svn:r1258 | ||
* | Get entropy in windows. | Nick Mathewson | 2004-03-11 |
| | | | | svn:r1257 | ||
* | clarifying comment for crypto_pk_get_fingerprint | Roger Dingledine | 2004-03-08 |
| | | | | svn:r1243 | ||
* | add crypto_cipher_rewind to reverse crypto_cipher_advance | Roger Dingledine | 2003-12-23 |
| | | | | svn:r957 | ||
* | document an openssl gotcha | Roger Dingledine | 2003-12-17 |
| | | | | svn:r947 | ||
* | change crypto_digest_new_env to crypto_new_digest_env | Roger Dingledine | 2003-12-16 |
| | | | | | | | | | (and same with _free_) to match our conventions i think our conventions may be getting too ad hoc svn:r940 | ||
* | rename digest_copy to digest_dup, make it return, make gcc happier | Roger Dingledine | 2003-12-16 |
| | | | | svn:r939 | ||
* | Add more fine-grained SHA1 functionality. | Nick Mathewson | 2003-12-16 |
| | | | | svn:r937 | ||
* | add a 'smartlist' building block that picks random elements from a list | Roger Dingledine | 2003-12-13 |
| | | | | svn:r897 | ||
* | Make router/directory parsing nondestructive and more const-friendly | Nick Mathewson | 2003-12-08 |
| | | | | svn:r890 | ||
* | assert that nobody asks for a random number between 0 and -1 | Roger Dingledine | 2003-12-03 |
| | | | | svn:r875 | ||
* | Remove minor biasing problem from crypto_pseudo_rand_int | Nick Mathewson | 2003-11-12 |
| | | | | svn:r799 | ||
* | Make crypto_pseudo_rand* never fail. | Nick Mathewson | 2003-11-12 |
| | | | | svn:r797 | ||
* | change WARNING to WARN | Roger Dingledine | 2003-10-10 |
| | | | | svn:r570 | ||
* | Update LICENSE and copyright dates. | Nick Mathewson | 2003-10-08 |
| | | | | svn:r560 | ||
* | finish enforcing the log convention | Roger Dingledine | 2003-09-26 |
| | | | | svn:r494 | ||
* | Add code to parse fingerprint files and compare routers against fingerprint ↵ | Nick Mathewson | 2003-09-26 |
| | | | | | | files. svn:r490 | ||
* | Bugfixes in crypto_pk_write_private_key_to_filename | Nick Mathewson | 2003-09-26 |
| | | | | svn:r489 | ||
* | Refactor common file code into util.c; add published to descriptors | Nick Mathewson | 2003-09-26 |
| | | | | svn:r487 | ||
* | Refactor buffers; implement descriptors. | Nick Mathewson | 2003-09-25 |
| | | | | | | | | | | | | | | | | | 'buf_t' is now an opaque type defined in buffers.c . Router descriptors now include all keys; routers generate keys as needed on startup (in a newly defined "data directory"), and generate their own descriptors. Descriptors are now self-signed. Implementation is not complete: descriptors are never published; and upon receiving a descriptor, the directory doesn't do anything with it. At least "routers.or" and orkeygen are now obsolete, BTW. svn:r483 | ||
* | Cipher lists need to be colon separated. Also make initialization more ↵ | Nick Mathewson | 2003-09-15 |
| | | | | | | bulletproof svn:r459 | ||
* | Simplify some code paths in TLS; cut down on memory leaks; use | Nick Mathewson | 2003-09-11 |
| | | | | | | | reasonable ciphers if not everyone has OpenSSL 0.9.7. svn:r442 | ||
* | Make crypto structures private to crypto.c | Nick Mathewson | 2003-09-10 |
| | | | | svn:r437 | ||
* | Add initial interfaces and code for TLS support. Interfaces are right; code ↵ | Nick Mathewson | 2003-09-04 |
| | | | | | | needs work and testing. svn:r424 | ||
* | fix formatting in crypto.c for my sanity | Roger Dingledine | 2003-08-25 |
| | | | | svn:r411 | ||
* | Start of port to win32. Missing are: | Nick Mathewson | 2003-08-12 |
| | | | | | | | | | | | | | | | | - signal support - forking for DNS farm - changes for async IO - daemonizing In other words, some files still don't build, and the ones that do build, do nonblocking IO incorrectly. I'm also not checking in the project files till I have a good place for them. svn:r380 | ||
* | Be smarter about getting key matter from DH. | Nick Mathewson | 2003-07-30 |
| | | | | | | | | | | | Formerly, once we had g^xy, we took the last N bytes from g^xy. Now, we take SHA(g^xy || [0]) || SHA1(g^xy || [1]) || ... , in order to use all bits from g^xy equally, and generate as much key material as we need. svn:r370 | ||
* | Add AES counter-mode support to the crypt library | Nick Mathewson | 2003-06-30 |
| | | | | svn:r362 | ||
* | clean up a broken comment in crypto.c | Roger Dingledine | 2003-06-24 |
| | | | | svn:r351 | ||
* | fix typos, streamline | Roger Dingledine | 2003-06-18 |
| | | | | svn:r337 | ||
* | Change many files to new log_fn format | Nick Mathewson | 2003-06-17 |
| | | | | svn:r333 | ||
* | Use fread instead of fgets for binary data | Nick Mathewson | 2003-06-17 |
| | | | | svn:r328 | ||
* | Fix the periodic bug that would make handshaking fail. | Nick Mathewson | 2003-06-14 |
| | | | | | | | | The culprit: sometimes DH_calculate_key returns less than DH_KEY_LEN bytes; we needed to check the return value. svn:r322 | ||
* | Add RNG seeding | Nick Mathewson | 2003-06-13 |
| | | | | svn:r318 | ||
* | don't complain as much when using openssl 0.9.7a | Roger Dingledine | 2003-06-10 |
| | | | | svn:r308 | ||
* | replace malloc with tor_malloc; remove broken/unused crypto_pk_set_key | Roger Dingledine | 2003-05-20 |
| | | | | svn:r292 | ||
* | Tested backends for directory signing and checking. Directory parser ↵ | Nick Mathewson | 2003-05-07 |
| | | | | | | completely refactored. Need documentation and integration. Explanitory mail forthcoming. svn:r271 | ||
* | Decrease DH group length to 1024. (Roger, you may want to read section 1 of ↵ | Nick Mathewson | 2003-05-07 |
| | | | | | | the IETF draft: a 1024-bit DH key probably reduces our cipher strength to ~80 bits.) svn:r269 | ||
* | More work on directories. Signed directories not yet tested. No support for ↵ | Nick Mathewson | 2003-05-07 |
| | | | | | | checking sigs yet svn:r268 | ||
* | Basic diffie-helman wrappers with fixed modulus and tests | Nick Mathewson | 2003-05-01 |
| | | | | svn:r257 | ||
* | more cleanup | Roger Dingledine | 2003-04-16 |
| | | | | svn:r242 | ||
* | Tests for crypto; more tests for buffers | Nick Mathewson | 2003-04-16 |
| | | | | svn:r234 | ||
* | Correct defeatest attitude in crypto_new_cipher_env | Nick Mathewson | 2003-03-19 |
| | | | | svn:r201 | ||
* | Refactor block ciphers; add 3des | Nick Mathewson | 2003-03-19 |
| | | | | svn:r196 | ||
* | remove popt dependency, consolidate config stuff | Roger Dingledine | 2002-11-23 |
| | | | | | | | reformat parts of onion.c svn:r136 | ||
* | Add convenience functions to wrap create and init for symmetric ciphers; ↵ | Nick Mathewson | 2002-10-02 |
| | | | | | | clean up error handling in onion.c svn:r131 | ||
* | don't leak memory on pk ops | Roger Dingledine | 2002-09-27 |
| | | | | svn:r117 | ||
* | laying the groundwork for dynamic router lists | Roger Dingledine | 2002-09-24 |
| | | | | | | | | | | | | | | | | revamped the router reading section reference counting for crypto pk env's (so we can dup them) we now read and write pem pk keys from string rather than from FILE*, in anticipation of fetching directories over a socket (so now on startup we slurp in the whole file, then parse it as a string) fixed a bug in the proxy side, where you could get some circuits wedged if they showed up while the connection was being made svn:r110 |