1 write to KeyInfo
WindowsBase (1)
Base\MS\Internal\IO\Packaging\XmlDigitalSignatureProcessor.cs (1)
827_signedXml.KeyInfo = GenerateKeyInfo(key, signer);
21 references to KeyInfo
System.Core (3)
System\Security\Cryptography\Xml\ManifestSignedXml.cs (3)
204if (KeyInfo != null && String.Compare(KeyInfo.Id, idValue, StringComparison.OrdinalIgnoreCase) == 0) { 205return KeyInfo.GetXml();
System.Security (4)
system\security\cryptography\xml\signedxml.cs (4)
446if (KeyInfo == null) 456m_keyInfoEnum = KeyInfo.GetEnumerator(); 485if (this.KeyInfo != null) { 486foreach (KeyInfoClause clause in this.KeyInfo) {
System.Windows.Forms (13)
parent\parent\parent\public\Internal\NDP\Inc\mansign.cs (6)
285KeyInfo keyInfo = this.KeyInfo; 979signedXml.KeyInfo.AddClause(new RSAKeyValue(rsaPublicKey)); 980signedXml.KeyInfo.AddClause(new KeyInfoX509Data(signer.Certificate, signer.IncludeOption)); 1082signedXml.KeyInfo.AddClause(new RSAKeyValue(snKey)); 1084signedXml.KeyInfo.AddClause(new KeyInfoNode(licenseDom.DocumentElement)); 1086signedXml.KeyInfo.Id = "StrongNameKeyInfo";
parent\parent\parent\public\Internal\NDP\Inc\mansign2.cs (7)
79KeyInfo keyInfo = this.KeyInfo; 495KeyInfo keyInfo = signedXml.KeyInfo; 1720signedXml.KeyInfo.AddClause(new RSAKeyValue(rsaPrivateKey)); 1721signedXml.KeyInfo.AddClause(new KeyInfoX509Data(signer.Certificate, signer.IncludeOption)); 1932signedXml.KeyInfo.AddClause(new RSAKeyValue(snKey)); 1935signedXml.KeyInfo.AddClause(new KeyInfoNode(licenseDom.DocumentElement)); 1937signedXml.KeyInfo.Id = "StrongNameKeyInfo";
WindowsBase (1)
Base\MS\Internal\IO\Packaging\XmlDigitalSignatureProcessor.cs (1)
343IEnumerator keyInfoClauseEnum = EnsureXmlSignatureParsed().KeyInfo.GetEnumerator(typeof(KeyInfoX509Data));