io.justdevit.kotlin.boost.encryption.CipherDecrypter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boost-commons Show documentation
Show all versions of boost-commons Show documentation
Library to boost working with Kotlin/JVM projects.
The newest version!
package io.justdevit.kotlin.boost.encryption
class CipherDecrypter(private val factory: CipherFactory) : Decrypter {
override fun decrypt(bytes: ByteArray): ByteArray = factory.createDecryptCipher().doFinal(bytes)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy