head	1.2;
access;
symbols
	RELEASE_4_11_0:1.1
	RELEASE_5_3_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2005.02.08.21.54.03;	author pav;	state dead;
branches;
next	1.1;

1.1
date	2004.05.05.20.24.04;	author mi;	state Exp;
branches;
next	;


desc
@@


1.2
log
@- Update to 4.5

PR:		ports/77179
Submitted by:	Laurent LEVIER <llevier@@argosnet.com> (maintainer)
@
text
@--- configure	Thu Nov 20 10:45:28 2003
+++ configure	Mon May  3 15:14:26 2004
@@@@ -26,5 +26,5 @@@@
 LIBDIRS=`cat /etc/ld.so.conf 2> /dev/null`
 PREFIX=`echo "$1"|sed 's/.*--prefix=//'`
-LIBDES=""
+LIBDES=" "
 echo
 
--- hydra-smbnt.c	Fri Dec 12 03:47:16 2003
+++ hydra-smbnt.c	Mon May  3 15:19:09 2004
@@@@ -5,6 +5,7 @@@@
 }
 #else
-#include "md4.h"
-#include <des.h>
+#include <openssl/md4.h>
+#include <openssl/des.h>
+#include <openssl/des_old.h>
 
 /*
@@@@ -132,7 +132,7 @@@@
       unicodePassword[i * 2] = (u_char)pass[i];
 
-    MD4Init(&md4Context);
-    MD4Update(&md4Context, unicodePassword, mdlen);
-    MD4Final(hash, &md4Context);        /* Tell MD4 we're done */
+    MD4_Init(&md4Context);
+    MD4_Update(&md4Context, unicodePassword, mdlen);
+    MD4_Final(hash, &md4Context);        /* Tell MD4 we're done */
   }
 
@


1.1
log
@Upgrade from 2.6 to 4.0. Declare USE_OPENSSL. Use the OpenSSL's libraries
instead of looking for the obsolete libdes. Use OpenSSL's MD4-functions
instead of compiling Hydra's own md4.c.

Approved by:	maintainer
@
text
@@

