mullender / python-ntlm

Automatically exported from code.google.com/p/python-ntlm
90 stars 42 forks source link

Fix byte encoding appearing in NTLM Header #56

Closed timgates42 closed 5 years ago

timgates42 commented 5 years ago

The ntml.create_ calls return a byte string and so when performing a string substitution appear as "NTLM b'..HEX..'" rather than "NTML ..HEX.." use decode('ascii') to convert to unicode before string substitution occurs.

timgates42 commented 5 years ago

Hi @mullender let me know if you would like any changes or any help looking after the NTLM repository.

mullender commented 5 years ago

Hi @timgates42, thanks for using this library. As you can tell I have not done any work on it after I left the windows environment in which I was using it. If you want to work on improving the library that would be excellent. Let me add you.

timgates42 commented 5 years ago

Thanks @mullender