diff options
Diffstat (limited to 'package/dsniff/patches/patch-sshcrypto_c')
-rw-r--r-- | package/dsniff/patches/patch-sshcrypto_c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/package/dsniff/patches/patch-sshcrypto_c b/package/dsniff/patches/patch-sshcrypto_c deleted file mode 100644 index 981aadb53..000000000 --- a/package/dsniff/patches/patch-sshcrypto_c +++ /dev/null @@ -1,43 +0,0 @@ -$Id$ ---- dsniff-2.4.orig/sshcrypto.c 2001-03-15 09:33:04.000000000 +0100 -+++ dsniff-2.4/sshcrypto.c 2009-05-09 23:13:59.000000000 +0200 -@@ -14,6 +14,10 @@ - - #include <sys/types.h> - #include <openssl/ssl.h> -+#ifndef OPENSSL_NO_BF -+#include <openssl/blowfish.h> -+#endif -+#include <openssl/des.h> - - #include <err.h> - #include <stdio.h> -@@ -21,10 +25,12 @@ - - #include "sshcrypto.h" - -+#ifndef OPENSSL_NO_BF - struct blowfish_state { - struct bf_key_st key; - u_char iv[8]; - }; -+#endif - - struct des3_state { - des_key_schedule k1, k2, k3; -@@ -106,6 +112,7 @@ swap_bytes(const u_char *src, u_char *ds - } - } - -+#ifndef OPENSSL_NO_BF - void * - blowfish_init(u_char *sesskey, int len) - { -@@ -143,6 +150,7 @@ blowfish_decrypt(u_char *src, u_char *ds - BF_DECRYPT); - swap_bytes(dst, dst, len); - } -+#endif - - /* XXX - SSH1's weirdo 3DES... */ - void * |