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

io.justdevit.kotlin.boost.encryption.CipherEncryptor.kt Maven / Gradle / Ivy

The newest version!
package io.justdevit.kotlin.boost.encryption

class CipherEncryptor(private val factory: CipherFactory) : Encryptor {
    override fun encrypt(bytes: ByteArray): ByteArray = factory.createEncryptCipher().doFinal(bytes)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy