decryptBytes

open fun decryptBytes(data: Array<Byte>, key: Array<Byte>, iv: Array<Byte>): String

Decrypts the given bytes using key and IV.

Return

Decrypted data.

Parameters

data

Data bytes.

key

Key bytes.

iv

Initialization vector bytes.