8 references to XmlSerializedDescriptorInfo
KeyManagementSimulator (1)
Program.cs (1)
242
new
(serializedDescriptor, typeof(IAuthenticatedEncryptorDescriptorDeserializer)); // This shouldn't be an interface, but we control the activator
Microsoft.AspNetCore.DataProtection (4)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptor.cs (1)
56
return new
XmlSerializedDescriptorInfo
(outerElement, typeof(AuthenticatedEncryptorDescriptorDeserializer));
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorDescriptor.cs (1)
67
return new
XmlSerializedDescriptorInfo
(rootElement, typeof(CngCbcAuthenticatedEncryptorDescriptorDeserializer));
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorDescriptor.cs (1)
58
return new
XmlSerializedDescriptorInfo
(rootElement, typeof(CngGcmAuthenticatedEncryptorDescriptorDeserializer));
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptor.cs (1)
58
return new
XmlSerializedDescriptorInfo
(rootElement, typeof(ManagedAuthenticatedEncryptorDescriptorDeserializer));
Microsoft.AspNetCore.DataProtection.Tests (3)
KeyManagement\XmlKeyManagerTests.cs (3)
88
mockDescriptor.Setup(o => o.ExportToXml()).Returns(new
XmlSerializedDescriptorInfo
(serializedDescriptor, typeof(MyDeserializer)));
177
mockDescriptor.Setup(o => o.ExportToXml()).Returns(new
XmlSerializedDescriptorInfo
(serializedDescriptor, typeof(MyDeserializer)));
757
.Returns(new
XmlSerializedDescriptorInfo
(serializedDescriptor, typeof(IAuthenticatedEncryptorDescriptorDeserializer)));