A promise that resolves with the decrypted version of the provided encrypted data. The decrypted data will match the original content before it was encrypted, and it will be in the ArrayBuffer format.
Parameters
data
TypeArrayBuffer
The encrypted data that you want to decrypt. This data should have been encrypted using one of the encryption types supported by the EncryptionHandler.
encryptionMetaData
TypeEncryptionMetaData
The metadata associated with the encrypted data. This metadata provides details about how the data was encrypted, and is crucial for successfully decrypting it.
You can access metadata using the getMetadata() method on encryption instance.