18 references to SignedInfo
System.IdentityModel (18)
System\IdentityModel\EnvelopedSignatureReader.cs (7)
103WifSignedInfo signedInfo = _signedXml.Signature.SignedInfo as WifSignedInfo; 177if (_signedXml.Signature.SignedInfo.ReferenceCount != 1) 191WifSignedInfo signedInfo = _signedXml.Signature.SignedInfo as WifSignedInfo; 199_signingCredentials = new SigningCredentials(signingKey, _signedXml.Signature.SignedInfo.SignatureMethod, signedInfo[0].DigestMethod, _signedXml.Signature.KeyIdentifier); 208_signingCredentials = new SigningCredentials(clause.CreateKey(), _signedXml.Signature.SignedInfo.SignatureMethod, signedInfo[0].DigestMethod, new SecurityKeyIdentifier(clause)); 243_signingCredentials = new SigningCredentials(signingKey, _signedXml.Signature.SignedInfo.SignatureMethod, signedInfo[0].DigestMethod, _signedXml.Signature.KeyIdentifier); 245_signingCredentials = new SigningCredentials(signingKey, _signedXml.Signature.SignedInfo.SignatureMethod, signedInfo[0].DigestMethod, new SecurityKeyIdentifier(_signedXml.Signature.KeyIdentifier[0]));
System\IdentityModel\SignedXml.cs (11)
79this.Signature.SignedInfo.ComputeReferenceDigests(); 80this.Signature.SignedInfo.ComputeHash(hash); 99this.Signature.SignedInfo.ComputeReferenceDigests(); 100this.Signature.SignedInfo.ComputeHash(hash); 107string signatureMethod = this.Signature.SignedInfo.SignatureMethod; 150this.Signature.SignedInfo.EnsureAllReferencesVerified(); 155this.Signature.SignedInfo.EnsureDigestValidity(id, resolvedXmlSource); 160return this.Signature.SignedInfo.EnsureDigestValidityIfIdMatches(id, resolvedXmlSource); 180this.Signature.SignedInfo.ComputeHash(hash); 189this.Signature.SignedInfo.ComputeHash(hash); 213string signatureMethod = this.Signature.SignedInfo.SignatureMethod;