pkgsrc/devel/libntlm/patches/patch-ac
obache cffbefdc8a Update libntlm to 0.3.12.
* Version 0.3.12 (released 2006-08-24)

** Update of gnulib files.

** API and ABI modifications.
No changes since last version.

* Version 0.3.11 (released 2006-05-16)

** Fix buggy MD4 implementation on 64-bit platforms.

** Self tests are run under valgrind, if available.

** Updated gnulib files.

** API and ABI modifications.
No changes since last version.

* Version 0.3.10 (released 2006-03-24)

** The library is linked with -no-undefined, to enable building a Windows DLL.

** Add new APIs to access the SMBencrypt and SMBNTencrypt functions.
Suggested by Pavel Fedin <fedin@matek.ru>.

** API and ABI modifications.
ntlm_smb_encrypt: ADD
ntlm_smb_nt_encrypt: ADD

* Version 0.3.9 (released 2005-10-23)

** DES and MD4 functionality replaced with gnulib modules.
These modules also comes with self tests.

** API and ABI modifications.
No changes since last version.
2006-12-09 13:57:29 +00:00

13 lines
419 B
Text

$NetBSD: patch-ac,v 1.1 2006/12/09 13:57:29 obache Exp $
--- smbencrypt.c.orig 2006-03-24 09:04:05.000000000 +0000
+++ smbencrypt.c
@@ -145,7 +145,7 @@ ntlm_convert_key (char *key_56, des_ctx
key[6] = ((to_uchar (key_56[5]) << 2) & 0xFF) | (to_uchar (key_56[6]) >> 6);
key[7] = (to_uchar (key_56[6]) << 1) & 0xFF;
- des_setkey (ks, key);
+ ntlm_des_setkey (ks, key);
memset (&key, 0, sizeof (key));
}