macosMain.fr.acinq.bitcoin.crypto.Pbkdf2.macos.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitcoin-kmp Show documentation
Show all versions of bitcoin-kmp Show documentation
A simple Kotlin Multiplatform library which implements most of the bitcoin protocol
The newest version!
package fr.acinq.bitcoin.crypto
public actual object Pbkdf2 {
public actual fun withHmacSha512(password: ByteArray, salt: ByteArray, count: Int, dkLen: Int): ByteArray =
Pbkdf2Native.withHmacSha512(password, salt, count, dkLen)
}