7 implementations of Decrypt
CustomEncryptorSample (1)
CustomXmlDecryptor.cs (1)
20public XElement Decrypt(XElement encryptedElement)
KeyManagementSimulator (1)
Program.cs (1)
576XElement IXmlDecryptor.Decrypt(XElement encryptedElement)
Microsoft.AspNetCore.DataProtection (4)
XmlEncryption\DpapiNGXmlDecryptor.cs (1)
47public XElement Decrypt(XElement encryptedElement)
XmlEncryption\DpapiXmlDecryptor.cs (1)
44public XElement Decrypt(XElement encryptedElement)
XmlEncryption\EncryptedXmlDecryptor.cs (1)
57public XElement Decrypt(XElement encryptedElement)
XmlEncryption\NullXmlDecryptor.cs (1)
21public XElement Decrypt(XElement encryptedElement)
Microsoft.AspNetCore.DataProtection.Tests (1)
XmlEncryption\XmlEncryptionExtensionsTests.cs (1)
325public XElement Decrypt(XElement encryptedElement)
7 references to Decrypt
Microsoft.AspNetCore.DataProtection (3)
XmlEncryption\EncryptedXmlInfo.cs (2)
20/// <param name="decryptorType">The class whose <see cref="IXmlDecryptor.Decrypt(XElement)"/> 39/// The class whose <see cref="IXmlDecryptor.Decrypt(XElement)"/> method can be used to
XmlEncryption\XmlEncryptionExtensions.cs (1)
52var decryptedElement = decryptorInstance.Decrypt(clonedElementWhichRequiresDecryption.Elements().Single());
Microsoft.AspNetCore.DataProtection.Tests (4)
KeyManagement\XmlKeyManagerTests.cs (2)
775.Setup(o => o.Decrypt(It.IsAny<XElement>())) 857.Setup(o => o.Decrypt(It.IsAny<XElement>()))
MockExtensions.cs (1)
49.Setup(o => o.Decrypt(It.IsAny<XElement>()))
XmlEncryption\XmlEncryptionExtensionsTests.cs (1)
178.Setup(o => o.Decrypt(It.IsAny<XElement>()))