Encryptor

interface Encryptor

The interface class Encryptor provides methods to encrypt and decrypt data.

Inheritors

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
abstract fun decrypt(encryptedData: ByteArray): ByteArray

Decrypts the data.

Link copied to clipboard
abstract fun encrypt(clearText: ByteArray): ByteArray

Encrypts the data.