[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Decrease DH group length to 1024. (Roger, you may want to ...
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/tmp/cvs-serv17125/src/or
Modified Files:
or.h test.c
Log Message:
Decrease DH group length to 1024. (Roger, you may want to read section 1 of the IETF draft: a 1024-bit DH key probably reduces our cipher strength to ~80 bits.)
Index: or.h
===================================================================
RCS file: /home/or/cvsroot/src/or/or.h,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -d -r1.76 -r1.77
--- or.h 7 May 2003 02:13:23 -0000 1.76
+++ or.h 7 May 2003 02:28:42 -0000 1.77
@@ -354,8 +354,8 @@
};
-#define DH_KEY_LEN 192
-#define DH_ONIONSKIN_LEN 208
+#define DH_KEY_LEN CRYPTO_DH_SIZE
+#define DH_ONIONSKIN_LEN DH_KEY_LEN+16
typedef struct crypt_path_t crypt_path_t;
Index: test.c
===================================================================
RCS file: /home/or/cvsroot/src/or/test.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- test.c 7 May 2003 02:13:23 -0000 1.14
+++ test.c 7 May 2003 02:28:42 -0000 1.15
@@ -631,7 +631,6 @@
log(LOG_ERR,NULL); /* make logging quieter */
setup_directory();
-#if 0
puts("========================== Buffers =========================");
test_buffers();
puts("========================== Crypto ==========================");
@@ -641,7 +640,6 @@
test_util();
puts("\n========================= Onion Skins =====================");
test_onion_handshake();
-#endif
puts("\n========================= Directory Formats ===============");
test_dir_format();
puts("");