4 instantiations of EncryptedXmlInfo
Microsoft.AspNetCore.DataProtection (4)
XmlEncryption\CertificateXmlEncryptor.cs (1)
76return new EncryptedXmlInfo(encryptedElement, typeof(EncryptedXmlDecryptor));
XmlEncryption\DpapiNGXmlEncryptor.cs (1)
91return new EncryptedXmlInfo(element, typeof(DpapiNGXmlDecryptor));
XmlEncryption\DpapiXmlEncryptor.cs (1)
87return new EncryptedXmlInfo(element, typeof(DpapiXmlDecryptor));
XmlEncryption\NullXmlEncryptor.cs (1)
60return new EncryptedXmlInfo(newElement, typeof(NullXmlDecryptor));
14 references to EncryptedXmlInfo
Microsoft.AspNetCore.DataProtection (14)
Internal\KeyManagementOptionsPostSetup.cs (1)
99EncryptedXmlInfo IXmlEncryptor.Encrypt(XElement plaintextElement)
XmlEncryption\CertificateXmlEncryptor.cs (2)
63/// An <see cref="EncryptedXmlInfo"/> that contains the encrypted value of 67public EncryptedXmlInfo Encrypt(XElement plaintextElement)
XmlEncryption\DpapiNGXmlEncryptor.cs (2)
53/// An <see cref="EncryptedXmlInfo"/> that contains the encrypted value of 57public EncryptedXmlInfo Encrypt(XElement plaintextElement)
XmlEncryption\DpapiXmlEncryptor.cs (2)
46/// An <see cref="EncryptedXmlInfo"/> that contains the encrypted value of 50public EncryptedXmlInfo Encrypt(XElement plaintextElement)
XmlEncryption\EncryptedXmlInfo.cs (1)
17/// Creates an instance of an <see cref="EncryptedXmlInfo"/>.
XmlEncryption\IXmlEncryptor.cs (2)
18/// An <see cref="EncryptedXmlInfo"/> that contains the encrypted value of 26EncryptedXmlInfo Encrypt(XElement plaintextElement);
XmlEncryption\NullXmlEncryptor.cs (2)
41/// An <see cref="EncryptedXmlInfo"/> that contains the null-encrypted value of 45public EncryptedXmlInfo Encrypt(XElement plaintextElement)
XmlEncryption\XmlEncryptionExtensions.cs (2)
117var placeholderReplacements = new Dictionary<XElement, EncryptedXmlInfo>(); 132var encryptedXmlInfo = encryptor.Encrypt(clonedElementWhichRequiresEncryption);