4 implementations of Decrypt
Microsoft.AspNetCore.DataProtection (4)
XmlEncryption\DpapiNGXmlDecryptor.cs (1)
47
public XElement
Decrypt
(XElement encryptedElement)
XmlEncryption\DpapiXmlDecryptor.cs (1)
44
public XElement
Decrypt
(XElement encryptedElement)
XmlEncryption\EncryptedXmlDecryptor.cs (1)
57
public XElement
Decrypt
(XElement encryptedElement)
XmlEncryption\NullXmlDecryptor.cs (1)
21
public 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)
52
var decryptedElement = decryptorInstance.
Decrypt
(clonedElementWhichRequiresDecryption.Elements().Single());