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