ntml message encrypt from client issue

45 Views Asked by At

last two days I was searching for NTLM library for php. One of our service uses Auhorization based on NTLM protocol. I want to integrate/automate process from another service. In other words I need to crypt and send type 3 message to authenticate, but can't do. Can anyone advice me, what to do?

EDIT

Problem is that I have php script, which wants to update destination source [NTLM based] with some content. It need to login and update contents. If you see browser`s console log [developer bar], you will see that it's made in 3 steps [handshakes] here is doc, I found http://www.innovation.ch/personal/ronald/ntlm.html

Desire is: I want to learn how to correctly make headers[encode] to login with provided credentials

1

There are 1 best solutions below

0
On

Actually curl has built in functionality

CURLOPT_HTTPAUTH, CURLAUTH_NTLM
CURLOPT_USERPWD, domain\\username:password

That's it