diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-21 19:59:56 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-21 19:59:56 +0000 |
commit | 32b9508d066f002e778873edc19266a6d897f922 (patch) | |
tree | c15477a812fad192ff43b2296ed3da3e46eb2a75 /source3/lib/md4.c | |
parent | dab1a1227873f1a88dc7a4b8f63edcccd60ada85 (diff) | |
download | samba-32b9508d066f002e778873edc19266a6d897f922.tar.gz samba-32b9508d066f002e778873edc19266a6d897f922.tar.xz samba-32b9508d066f002e778873edc19266a6d897f922.zip |
implement server-side generation of NTLMv2 session key. YESSS :-)
(This used to be commit 1092b4f6fbdf3770c0dab756b982a562def1738e)
Diffstat (limited to 'source3/lib/md4.c')
-rw-r--r-- | source3/lib/md4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/md4.c b/source3/lib/md4.c index 30f2b6b8c6b..56c9e02ffbe 100644 --- a/source3/lib/md4.c +++ b/source3/lib/md4.c @@ -101,7 +101,7 @@ static void mdfour64(uint32 *M) X[j] = 0; } -static void copy64(uint32 *M, unsigned char *in) +static void copy64(uint32 *M, const unsigned char *in) { int i; @@ -119,7 +119,7 @@ static void copy4(unsigned char *out,uint32 x) } /* produce a md4 message digest from data of length n bytes */ -void mdfour(unsigned char *out, unsigned char *in, int n) +void mdfour(unsigned char *out, const unsigned char *in, int n) { unsigned char buf[128]; uint32 M[16]; |