Re: SystemFunction006

2004-10-01 Thread Hans Leidekker
On Thursday 30 September 2004 23:35, Rolf Kalbermatter wrote: > I don't think this will work properly. The returned pointer from CRYPT_LMHash() > will never be passed out to the caller of the function. There should be > probably a function call before the return of the function along the lines Ah

RE: SystemFunction006

2004-09-30 Thread Rolf Kalbermatter
Hans Leidekker wrote: +NTSTATUS WINAPI SystemFunction006( LPCSTR password, LPSTR hash ) +{ +unsigned char buffer[16]; + +hash = CRYPT_LMhash( buffer, password, strlen(password) ); + +return STATUS_SUCCESS; +} I don't think this will work properly. The returned pointer