commonMain.cash.z.ecc.android.crypto.PBEKeySpecCommon.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-bip39 Show documentation
Show all versions of kotlin-bip39 Show documentation
A concise implementation of BIP-0039 in Kotlin.
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()
}