更新
我发现,如果我将受信任的证书添加到SPOptions.ServiceCertificates
并设置SPOptions.AuthenticateRequestSigningBehavior = Sustainsys.Saml2.Configuration.SigningBehavior.IfIdpWantAuthnRequestsSigned;
和设置IdentityProvider.WantAuthnRequestsSigned = true
,则包含签名元素。
原始问题:
连接到 IDP 时遇到以下问题AuthnRequest
:
<saml2p:AuthnRequest xmlns:saml2p="urn:oasis:names:tc:SAML:2.0:protocol" xmlns:saml2="urn:oasis:names:tc:SAML:2.0:assertion" ID="idf299bf8aa08542d193e022cb047e5ecc" Version="2.0" IssueInstant="2019-07-23T00:10:13Z" Destination="https://example-idp.com" AssertionConsumerServiceURL="https://example-sp.com/Acs">
<saml2:Issuer>https://example-sp.com</saml2:Issuer>
</saml2p:AuthnRequest>
IDP 说:"SignatureStatus: NOT_PRESENT"。我猜这意味着authnrequest
应该有一个<ds:Signature
部分?如果是这样,我如何配置Sustainsys.Saml2.AspNetCore2
以包含它?
我从 idp 收到的元数据 xml 包含一个<ds:Signature
部分,但是查看源代码Sustainsys.Saml2.AspNetCore2
,看起来在反序列化时元数据的那部分被忽略了?
我对 SAML 的内部结构不是很熟悉,如果这是一个愚蠢的问题,我很抱歉。