decryptingSourceWithIv
Returns a RawSource that decrypts data as it is read from the given ciphertext source using the specified iv without associated data.
Use decryptingSinkWithIv to wrap a sink instead.
abstract fun decryptingSourceWithIv(iv: ByteArray, ciphertext: RawSource, associatedData: ByteArray?): RawSource(source)
open fun decryptingSourceWithIv(iv: ByteString, ciphertext: RawSource, associatedData: ByteString?): RawSource(source)
Returns a RawSource that decrypts data as it is read from the given ciphertext source using the specified iv with optional associatedData.
Use decryptingSinkWithIv to wrap a sink instead.