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

cryptography.Ciphertext.kt Maven / Gradle / Ivy

The newest version!
package nl.sanderdijkhuis.noise.cryptography

import nl.sanderdijkhuis.noise.data.Data

/** Result of Authenticated Encryption with Associated Data, or of no-op encryption. */
@JvmInline
value class Ciphertext(val data: Data) {

    val plaintext get() = Plaintext(data)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy