4 implementations of Decrypt
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)
3 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());