encrypt

fun encrypt(@NotNull data: ByteArray, @NotNull key: ByteArray = generateKey()): Map<String, ByteArray>

Encrypts the provided data using the provided key.

This method already generates a new key for each encryption. generateKey is optional.

Return

Map containing the data and key

Encrypted data