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

commonMain.cash.z.ecc.android.crypto.PBEKeySpecCommon.kt Maven / Gradle / Ivy

The newest version!
package cash.z.ecc.android.crypto

internal expect class PBEKeySpecCommon(password: CharArray?, salt: ByteArray, iterationCount: Int, keyLength: Int) {
    var password: CharArray?
        private set
    var salt: ByteArray?
        private set
    var iterationCount: Int
        private set
    var keyLength: Int
        private set

    fun clearPassword()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy