Click here to Skip to main content
15,899,679 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi Team,

I have a issue where password length is more than 27 character. Need to know with sample program how to generate NTLM password hash for input password length more than 27 character.

Thanks

What I have tried:

I tried converting input string to utf16-le and apply MD4 algorith but its not generating the accurate one once comare the result with online converter.
Posted
Updated 14-Aug-17 0:29am

1 solution

Try converting to UTF-8 or ASCII (they are single byte characters sets, rather than the double byte UTF-16): if that doesn't give the same results, then it's probably your code that's the problem; all correctly implemented MDn hash generators will give the same results when fed the same byte sequence.

And we can't see your code, or tell what you were comparing with, so we can't fix that for you!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900