ojblass
ojblass

Reputation: 21620

What is an spnego Token?

Sorry if the spelling is completely wrong. What the heck is one? Why is it preventing me from authenticating via Mozilla? Why would someone force me to use one to authenticate from a command line tool? How is it tied to the back end being implemented in Silverlight?

Upvotes: 2

Views: 4844

Answers (1)

Juha Syrjälä
Juha Syrjälä

Reputation: 34281

SPNEGO Simple and Protected GSSAPI Negotiation Mechanism is a GSSAPI "pseudo mechanism" that is used to negotiate one of a number of possible real mechanisms.

SPNEGO's most visible use is in Microsoft's "HTTP Negotiate" authentication extension. It was first implemented in Internet Explorer 5.01 and IIS 5.0 and provided single sign-on capability later marketed as Integrated Windows Authentication. The negotiable sub-mechanisms included NTLM and Kerberos, both used in Active Directory.

Upvotes: 1

Related Questions