nativeMain.io.eqoty.kryptools.aes256gcm.Aes256Gcm.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aes256-gcm Show documentation
Show all versions of aes256-gcm Show documentation
A Kotlin multiplatform collection of cryptography/crypto tools.
The newest version!
package io.eqoty.kryptools.aes256gcm
actual class Aes256Gcm actual constructor() {
actual suspend fun encrypt(
iv: UByteArray,
key: UByteArray,
plaintext: UByteArray
): UByteArray {
TODO("Not yet implemented")
}
actual suspend fun decrypt(
iv: UByteArray,
key: UByteArray,
ciphertext: UByteArray
): UByteArray {
TODO("Not yet implemented")
}
actual suspend fun decryptAtIndexUnauthenticated(
iv: UByteArray,
key: UByteArray,
ciphertext: UByteArray,
offset: Int,
hasTag: Boolean
): UByteArray {
TODO("Not yet implemented")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy