encryptBare

fun encryptBare(@NotNull data: ByteArray, @NotNull iv: ByteArray, @NotNull key: ByteArray): Map<String, ByteArray>

Encrypts the provided data using the provided key.

This is useful for advanced use cases if you want finer control.

If you want to encrypt data without worrying about iv and `key, use encrypt instead.

This does not return with key since it's supposed to be provided, unlike encrypt which generates a new key for each encryption.

Return

Map containing the data, iv, and key