alexbrainman / sspi

Windows SSPI
BSD 3-Clause "New" or "Revised" License
84 stars 27 forks source link

can the client token be reused ? #15

Open karman-docker opened 5 months ago

karman-docker commented 5 months ago

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 which gets passed to the proxy server in Proxy-Authorization header.

Can this client token be reused for subsequent calls to the proxy ? Appreciate if you have any suggestions on any golang package to achieve this for maOS using GSSAPI.

alexbrainman commented 5 months ago

Can this client token be reused for subsequent calls to the proxy ?

I do not know answer to this question.

Alex