Related questions
Working with SAML 2.0 in C# .NET 4.5
I am trying to use pure .NET (no external classes, controls, helpers) to create a SAML message. I found some code on the interwebs; this is what I have:
private static SamlAssertion createSamlAssertion()
{
// Here we create some SAML assertion with …
Sample .NET code for a SAML Identity Provider
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 …
How to parse a SAML assertion request in .Net
I'm trying to implement a SAML SSO solution in .Net, but I'm having a problem parsing the assertion.
I have a sample assertion (looks like byte[] data as text) and corresponding .p7b file.
I want to load the keys …