Cipher

interface Cipher

Inheritors

Properties

Link copied to clipboard
abstract val blockSize: Int

Functions

Link copied to clipboard
abstract fun decrypt(data: ByteArray, offset: Int = 0, len: Int = data.size - offset)
Link copied to clipboard
abstract fun encrypt(data: ByteArray, offset: Int = 0, len: Int = data.size - offset)
Link copied to clipboard
operator fun Cipher.get(mode: CipherMode, padding: CipherPadding, iv: ByteArray? = null): CipherWithModeAndPadding
Link copied to clipboard