4 writes to KeyInfo
System.Configuration (2)
System\Configuration\RSAProtectedConfigurationProvider.cs (2)
67ed.KeyInfo = new KeyInfo(); 71ek.KeyInfo = new KeyInfo();
System.Security (2)
system\security\cryptography\xml\encrypteddata.cs (1)
46this.KeyInfo = new KeyInfo();
system\security\cryptography\xml\encryptedkey.cs (1)
90this.KeyInfo = new KeyInfo();
18 references to KeyInfo
System.Configuration (4)
System\Configuration\FipsAwareEncryptedXml.cs (2)
33foreach (var ki in encryptedData.KeyInfo) { 61encryptedData.KeyInfo != null &&
System\Configuration\RSAProtectedConfigurationProvider.cs (2)
78ek.KeyInfo.AddClause(kin); 80ed.KeyInfo.AddClause(kek);
System.Security (14)
system\security\cryptography\xml\encrypteddata.cs (3)
49this.KeyInfo.LoadXml(keyInfoNode as XmlElement); 104if (this.KeyInfo.Count > 0) 105encryptedDataElement.AppendChild(this.KeyInfo.GetXml(document));
system\security\cryptography\xml\encryptedkey.cs (3)
93this.KeyInfo.LoadXml(keyInfoNode as XmlElement); 179if (this.KeyInfo.Count > 0) 180encryptedKeyElement.AppendChild(this.KeyInfo.GetXml(document));
system\security\cryptography\xml\encryptedxml.cs (8)
339if (encryptedData.KeyInfo == null) 341IEnumerator keyInfoEnum = encryptedData.KeyInfo.GetEnumerator(); 412if (encryptedKey.KeyInfo == null) 415IEnumerator keyInfoEnum = encryptedKey.KeyInfo.GetEnumerator(); 543ek.KeyInfo.AddClause(new KeyInfoX509Data(certificate)); 551ed.KeyInfo.AddClause(kek); 610ek.KeyInfo.AddClause(new KeyInfoName(keyName)); 620ed.KeyInfo.AddClause(kek);