Functions

Link copied to clipboard
open suspend fun decrypt(ciphertext: ByteArray): ByteArray
open suspend fun decrypt(ciphertext: ByteString): ByteString
Link copied to clipboard
abstract fun decryptBlocking(ciphertext: ByteArray): ByteArray
open fun decryptBlocking(ciphertext: ByteString): ByteString
Link copied to clipboard
abstract fun decryptingSink(plaintext: RawSink): RawSink
Link copied to clipboard
abstract fun decryptingSource(ciphertext: RawSource): RawSource
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 encryptingSource(plaintext: RawSource): RawSource