5 implementations of ExportToXml
KeyManagementSimulator (1)
Program.cs (1)
241XmlSerializedDescriptorInfo IAuthenticatedEncryptorDescriptor.ExportToXml() =>
Microsoft.AspNetCore.DataProtection (4)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptor.cs (1)
35public XmlSerializedDescriptorInfo ExportToXml()
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorDescriptor.cs (1)
37public XmlSerializedDescriptorInfo ExportToXml()
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorDescriptor.cs (1)
37public XmlSerializedDescriptorInfo ExportToXml()
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptor.cs (1)
36public XmlSerializedDescriptorInfo ExportToXml()
4 references to ExportToXml
Microsoft.AspNetCore.DataProtection (1)
AuthenticatedEncryption\ConfigurationModel\XmlExtensions.cs (1)
22/// to storage. Use when implementing <see cref="IAuthenticatedEncryptorDescriptor.ExportToXml"/>.
Microsoft.AspNetCore.DataProtection.Tests (3)
KeyManagement\XmlKeyManagerTests.cs (3)
88mockDescriptor.Setup(o => o.ExportToXml()).Returns(new XmlSerializedDescriptorInfo(serializedDescriptor, typeof(MyDeserializer))); 177mockDescriptor.Setup(o => o.ExportToXml()).Returns(new XmlSerializedDescriptorInfo(serializedDescriptor, typeof(MyDeserializer))); 755.Setup(o => o.ExportToXml())