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
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