Mitar
Mitar
`SAMLServiceProvider.Metadata` uses deprecated `GetSigningKey` and does not work correctly if `SetSPKeyStore` is used. Resulting metadata does not contain signing key even if it is used because `SetSPKeyStore` was called.
This allows one to store the request ID and then check `response.InResponseTo == requestID` (to obtain `response`, you need to use https://github.com/russellhaering/gosaml2/pull/236).
Fixes #89.
Fixes #241.
Fixes #235. This adds `RetrieveAssertionInfoWithResponse`, which is the same as `RetrieveAssertionInfo` but it also returns response itself. This is useful if you want to inspect response as well (e.g., to...
Currently if there are repeated same attributes (not their values) in the response, the last one just overrides the previous ones. This library supports only if there are multiple values...
`RetrieveAssertionInfo` is great utility function to obtain assertions. But I would also need access to response. The main reason is that I want access to `InResponseTo` field so that I...
Fixes #382.