Functions

Link copied to clipboard
open suspend fun decrypt(iv: ByteArray, ciphertextInput: ByteArray): ByteArray
open suspend fun decrypt(ciphertextInput: ByteArray): ByteArray
Link copied to clipboard
abstract fun decryptBlocking(iv: ByteArray, ciphertextInput: ByteArray): ByteArray
abstract fun decryptBlocking(ciphertextInput: ByteArray): ByteArray
Link copied to clipboard
open suspend fun encrypt(iv: ByteArray, plaintextInput: ByteArray): ByteArray
open suspend fun encrypt(plaintextInput: ByteArray): ByteArray
Link copied to clipboard
abstract fun encryptBlocking(iv: ByteArray, plaintextInput: ByteArray): ByteArray
abstract fun encryptBlocking(plaintextInput: ByteArray): ByteArray