All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.whispersystems.signalservice.api.crypto.SignalServiceCipherResult.kt Maven / Gradle / Ivy

There is a newer version: 2.15.3_unofficial_107
Show newest version
package org.whispersystems.signalservice.api.crypto

import org.whispersystems.signalservice.internal.push.Content

/**
 * Represents the output of decrypting a [SignalServiceProtos.Envelope] via [SignalServiceCipher.decrypt]
 *
 * @param content The [SignalServiceProtos.Content] that was decrypted from the envelope.
 * @param metadata The decrypted metadata of the envelope. Represents sender information that may have
 *                 been encrypted with sealed sender.
 */
data class SignalServiceCipherResult(
  val content: Content,
  val metadata: EnvelopeMetadata
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy