erlandranvinge / ntlm.js

Implementation of Microsoft NTLM in javascript. Allows you to do that NTLM ajax you've always wanted.
MIT License
51 stars 38 forks source link

Is there a way to cache the output of setCredentials() for later use #3

Open Earl-Brown opened 8 years ago

Earl-Brown commented 8 years ago

I am not sure that I understand the NTLM authentication scheme, but it looks like the first "phase" is to issue a semi-encrypted version of the username and password.

I would like to save that to re-use, instead of storing the password or repeatedly prompting the user.

Am I off-base in my understanding?

erlandranvinge commented 7 years ago

Hi, nope that's probably doable. The whole protocol is excellently documented here http://www.innovation.ch/personal/ronald/ntlm.html.

Earl-Brown commented 7 years ago

Wonderful - thanks!