interface SecretEncryptionStream : Destroyable
(source)
Used to encrypt a sequence of messages, or a single message split into arbitrary chunks.
open fun header(): Bytes |
|
abstract fun headerArray(): ByteArray |
|
open fun push(clearText: Bytes): Bytes open fun push(clearText: ByteArray): ByteArray open fun push(clearText: Bytes, isFinal: Boolean): Bytes abstract fun push(clearText: ByteArray, isFinal: Boolean): ByteArray
Push a message to this secret stream. |
|
open fun pushLast(clearText: Bytes): Bytes open fun pushLast(clearText: ByteArray): ByteArray
Push the final message to this secret stream. |