decrypt

fun decrypt(@NotNull encrypted: ByteArray, @NotNull key: ByteArray): ByteArray

Decrypts encrypted data using key.

This method assumes that the encrypted data is in [iv, data] format, presumably encrypted using encrypt


fun decrypt(@NotNull encrypted: Map<String, ByteArray>): ByteArray

Decrypts encrypted data in a Map format.

This method assumes that encrypted is a Map that contains concatenated encrypted data in [iv, data, aad] format and key, presumably encrypted using encrypt