encrypt Bare
fun encryptBare(@NotNull data: ByteArray, @NotNull iv: ByteArray, @NotNull key: ByteArray, @NotNull tag: ByteArray = byteArrayOf()): Map<String, ByteArray>
Encrypts the provided data along with tag (if provided) using key.
This is useful for advanced use cases if you want finer control.
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 iv
and the encrypted data
.