Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F144782766
D7054.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
D7054.diff
View Options
Index: head/security/dsniff/Makefile
===================================================================
--- head/security/dsniff/Makefile
+++ head/security/dsniff/Makefile
@@ -18,7 +18,8 @@
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-libnet=${LOCALBASE}
DESTDIRNAME= install_prefix
-USES= pkgconfig
+USES= gettext pkgconfig ssl
+USE_GNOME= glib20
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:C/(.*)..$/\1/}
OPTIONS_DEFINE= X11
Index: head/security/dsniff/files/patch-sshcrypto.c
===================================================================
--- head/security/dsniff/files/patch-sshcrypto.c
+++ head/security/dsniff/files/patch-sshcrypto.c
@@ -1,12 +1,66 @@
---- ./sshcrypto.c.orig 2001-03-15 09:33:04.000000000 +0100
-+++ ./sshcrypto.c 2014-07-22 13:20:14.000000000 +0200
-@@ -14,6 +14,9 @@
-
+$OpenBSD: patch-sshcrypto_c,v 1.3 2015/05/29 15:57:29 jca Exp $
+--- sshcrypto.c.orig Tue Nov 28 22:23:28 2000
++++ sshcrypto.c Fri May 29 17:56:22 2015
+@@ -15,7 +15,9 @@
#include <sys/types.h>
#include <openssl/ssl.h>
-+#include <openssl/blowfish.h>
-+#include <openssl/des.h>
-+#include <openssl/des_old.h>
++#include <openssl/des.h>
#include <err.h>
++#include <openssl/blowfish.h>
#include <stdio.h>
+ #include <stdlib.h>
+
+@@ -27,8 +29,8 @@ struct blowfish_state {
+ };
+
+ struct des3_state {
+- des_key_schedule k1, k2, k3;
+- des_cblock iv1, iv2, iv3;
++ DES_key_schedule k1, k2, k3;
++ DES_cblock iv1, iv2, iv3;
+ };
+
+ void
+@@ -153,13 +155,13 @@ des3_init(u_char *sesskey, int len)
+ if ((state = malloc(sizeof(*state))) == NULL)
+ err(1, "malloc");
+
+- des_set_key((void *)sesskey, state->k1);
+- des_set_key((void *)(sesskey + 8), state->k2);
++ DES_set_key((void *)sesskey, &state->k1);
++ DES_set_key((void *)(sesskey + 8), &state->k2);
+
+ if (len <= 16)
+- des_set_key((void *)sesskey, state->k3);
++ DES_set_key((void *)sesskey, &state->k3);
+ else
+- des_set_key((void *)(sesskey + 16), state->k3);
++ DES_set_key((void *)(sesskey + 16), &state->k3);
+
+ memset(state->iv1, 0, 8);
+ memset(state->iv2, 0, 8);
+@@ -175,9 +177,9 @@ des3_encrypt(u_char *src, u_char *dst, int len, void *
+ estate = (struct des3_state *)state;
+ memcpy(estate->iv1, estate->iv2, 8);
+
+- des_ncbc_encrypt(src, dst, len, estate->k1, &estate->iv1, DES_ENCRYPT);
+- des_ncbc_encrypt(dst, dst, len, estate->k2, &estate->iv2, DES_DECRYPT);
+- des_ncbc_encrypt(dst, dst, len, estate->k3, &estate->iv3, DES_ENCRYPT);
++ DES_ncbc_encrypt(src, dst, len, &estate->k1, &estate->iv1, DES_ENCRYPT);
++ DES_ncbc_encrypt(dst, dst, len, &estate->k2, &estate->iv2, DES_DECRYPT);
++ DES_ncbc_encrypt(dst, dst, len, &estate->k3, &estate->iv3, DES_ENCRYPT);
+ }
+
+ void
+@@ -188,7 +190,7 @@ des3_decrypt(u_char *src, u_char *dst, int len, void *
+ dstate = (struct des3_state *)state;
+ memcpy(dstate->iv1, dstate->iv2, 8);
+
+- des_ncbc_encrypt(src, dst, len, dstate->k3, &dstate->iv3, DES_DECRYPT);
+- des_ncbc_encrypt(dst, dst, len, dstate->k2, &dstate->iv2, DES_ENCRYPT);
+- des_ncbc_encrypt(dst, dst, len, dstate->k1, &dstate->iv1, DES_DECRYPT);
++ DES_ncbc_encrypt(src, dst, len, &dstate->k3, &dstate->iv3, DES_DECRYPT);
++ DES_ncbc_encrypt(dst, dst, len, &dstate->k2, &dstate->iv2, DES_ENCRYPT);
++ DES_ncbc_encrypt(dst, dst, len, &dstate->k1, &dstate->iv1, DES_DECRYPT);
+ }
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Feb 13, 12:32 PM (53 m, 13 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28677034
Default Alt Text
D7054.diff (3 KB)
Attached To
Mode
D7054: security/dsniff: Replace deprecated des_ methods and structs
Attached
Detach File
Event Timeline
Log In to Comment