Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sample .NET code for a SAML Identity Provider [closed]

I'd like to use SAML to allow authenticated users of a website to login to other federated sites. In single sign-on parlance, that means my site needs to become an Identity Provider.

Can anyone point me to sample .NET code or documentation for implementing this?

like image 891
sheikhjabootie Avatar asked Mar 30 '11 12:03

sheikhjabootie


People also ask

What is SAML authentication C#?

Security Assertion Markup Language, more commonly known as SAML, is an open standard for exchanging authentication and authorization data between parties. Most commonly these parties are an Identity Provider and a Service Provider.

Does .NET core support SAML?

The SAML library supports . NET Core 3.1, . NET 5.0, . NET 6.0 and above.

Is SAML an identity provider?

Security Assertion Markup Language (SAML) is an open standard that allows identity providers (IdP) to pass authorization credentials to service providers (SP). What that jargon means is that you can use one set of credentials to log into many different websites.


1 Answers

ComponentSpace claims to have example code for an Identity Provider and a 30-day trial, so you could at least look at the code.

Not really an example of code for an Identity Provider, but CodeProject has a good article on Performing a SAML Post with C#.

like image 152
flipdoubt Avatar answered Sep 28 '22 18:09

flipdoubt