decrypt-xml()
Last updated
Was this helpful?
Last updated
Was this helpful?
Decrypts an EncryptedData
XML element which was encrypted using and replaces it with its unenrypted counterpart.
encrypted_data
: a node-set containing the EncryptedData
element in the http://www.w3.org/2001/04/xmlenc#
namespace as its first node,
or an encrypted DOM document or an XML string. Only the first node of a provided node-set will be decrypted.
private_key
: Private key to decrypt the symmetric encryption key provided in the EncryptedKey
element.
See for the expected format of the private key.
passphrase
(optional): passphrase for decrypting an encrypted private_key
(defaults to ""
).
Returns true()
if encrypted_data
was successfully decrypted, false()
otherwise.