sspi icon indicating copy to clipboard operation
sspi copied to clipboard

Windows SSPI

Results 3 sspi issues
Sort by recently updated
recently updated
newest added

When trying to get the sspi/kerberos package, it complains about "build constraints exclude all Go files in" | => go get github.com/alexbrainman/sspi go: downloading github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74 go get: added github.com/alexbrainman/sspi...

The [ClientContext Update() method](https://github.com/alexbrainman/sspi/blob/1a75b4708caa219fd8d8261cd37c923ff6710a32/negotiate/negotiate.go#L172) accepts some 'token'. I presume it should be the one that's returned from [NewClientContext() method](https://github.com/alexbrainman/sspi/blob/master/negotiate/negotiate.go#L109) as 'outputToken'. However, when I do pass the 'outputToken' to the...

I am using this package to authenticate my application (on Windows) against a proxy server which requires Kerberos authentication. I am using negotiate.AcquireCurrentUserCredentials() and negotiate.NewClientContext() to get the client token...