This is an implementation of NTLM for Go that was implemented using Windows SSPI (Security Support Provider Interface).
It differs from other implemenations of NTLM as it uses the default credentials of the account that the application is running with, meaning the username and password does not have to be provided in plain text.
Usage Notes:
This is currently only implemented for Windows.
In order to perform an NTLM Http request, invoke ntlm.DoNTLMRequest(client, req) passing in http client and http request.