IvEncryptor

Functions

Link copied to clipboard
open suspend fun encrypt(plaintext: ByteArray): ByteArray
open suspend fun encrypt(plaintext: ByteString): ByteString
Link copied to clipboard
abstract fun encryptBlocking(plaintext: ByteArray): ByteArray
open fun encryptBlocking(plaintext: ByteString): ByteString
Link copied to clipboard
abstract fun encryptingSink(ciphertext: RawSink): RawSink
Link copied to clipboard
abstract fun encryptingSinkWithIv(iv: ByteArray, ciphertext: RawSink): RawSink
open fun encryptingSinkWithIv(iv: ByteString, ciphertext: RawSink): RawSink
Link copied to clipboard
abstract fun encryptingSource(plaintext: RawSource): RawSource
Link copied to clipboard
abstract fun encryptingSourceWithIv(iv: ByteArray, plaintext: RawSource): RawSource
open fun encryptingSourceWithIv(iv: ByteString, plaintext: RawSource): RawSource
Link copied to clipboard
open suspend fun encryptWithIv(iv: ByteArray, plaintext: ByteArray): ByteArray
open suspend fun encryptWithIv(iv: ByteString, plaintext: ByteString): ByteString
Link copied to clipboard
abstract fun encryptWithIvBlocking(iv: ByteArray, plaintext: ByteArray): ByteArray
open fun encryptWithIvBlocking(iv: ByteString, plaintext: ByteString): ByteString