diff md5.c @ 147:c2b93763dac9 libtomcrypt

Fixes for it to compile and work nicely with Dropbear. In particular, OS X's 'ar' doesn't seem to like arrays which don't have initialising values.
author Matt Johnston <matt@ucc.asn.au>
date Sun, 19 Dec 2004 16:23:32 +0000
parents 5d99163f7e32
children
line wrap: on
line diff
--- a/md5.c	Sun Dec 19 11:47:33 2004 +0000
+++ b/md5.c	Sun Dec 19 16:23:32 2004 +0000
@@ -23,10 +23,13 @@
     64,
 
     /* DER identifier */
+#if 0
+	/* matt */
     { 0x30, 0x20, 0x30, 0x0C, 0x06, 0x08, 0x2A, 0x86, 
       0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, 0x05, 0x00, 
       0x04, 0x10 },
     18,
+#endif
 
     &md5_init,
     &md5_process,