decrypt

fun decrypt(@NotNull encrypted: ByteArray, @NotNull key: ByteArray, @NotNull tag: ByteArray = byteArrayOf()): ByteArray

Decrypts encrypted data using key and tag if provided.

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] format with key and tag, presumably encrypted using encrypt.