8 instantiations of XmlSerializedDescriptorInfo
KeyManagementSimulator (1)
Program.cs (1)
242new(serializedDescriptor, typeof(IAuthenticatedEncryptorDescriptorDeserializer)); // This shouldn't be an interface, but we control the activator
Microsoft.AspNetCore.DataProtection (4)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptor.cs (1)
56return new XmlSerializedDescriptorInfo(outerElement, typeof(AuthenticatedEncryptorDescriptorDeserializer));
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorDescriptor.cs (1)
67return new XmlSerializedDescriptorInfo(rootElement, typeof(CngCbcAuthenticatedEncryptorDescriptorDeserializer));
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorDescriptor.cs (1)
58return new XmlSerializedDescriptorInfo(rootElement, typeof(CngGcmAuthenticatedEncryptorDescriptorDeserializer));
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptor.cs (1)
58return new XmlSerializedDescriptorInfo(rootElement, typeof(ManagedAuthenticatedEncryptorDescriptorDeserializer));
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))); 757.Returns(new XmlSerializedDescriptorInfo(serializedDescriptor, typeof(IAuthenticatedEncryptorDescriptorDeserializer)));
16 references to XmlSerializedDescriptorInfo
KeyManagementSimulator (1)
Program.cs (1)
241XmlSerializedDescriptorInfo IAuthenticatedEncryptorDescriptor.ExportToXml() =>
Microsoft.AspNetCore.DataProtection (7)
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\IAuthenticatedEncryptorDescriptor.cs (2)
18/// An <see cref="XmlSerializedDescriptorInfo"/> wrapping the <see cref="XElement"/> which represents the serialized 27XmlSerializedDescriptorInfo ExportToXml();
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptor.cs (1)
36public XmlSerializedDescriptorInfo ExportToXml()
AuthenticatedEncryption\ConfigurationModel\XmlSerializedDescriptorInfo.cs (1)
18/// Creates an instance of an <see cref="XmlSerializedDescriptorInfo"/>.
Microsoft.AspNetCore.DataProtection.Tests (8)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptorTests.cs (2)
150var retVal = descriptor.ExportToXml(); 173var retVal = descriptor.ExportToXml();
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorDescriptorTests.cs (2)
25var retVal = descriptor.ExportToXml(); 53var retVal = descriptor.ExportToXml();
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorDescriptorTests.cs (2)
23var retVal = descriptor.ExportToXml(); 49var retVal = descriptor.ExportToXml();
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptorTests.cs (2)
24var retVal = descriptor.ExportToXml(); 56var retVal = descriptor.ExportToXml();