1.2.1 Release #7

Merged
Infendro merged 2 commits from develop into main 2026-03-12 10:34:04 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 8f80ceaf7f - Show all commits

View File

@@ -15,7 +15,7 @@ repositories {
}
dependencies {
implementation("com.infendro:kdf:1.2.0")
implementation("com.infendro:kdf:1.2.1")
}
```
@@ -25,7 +25,7 @@ dependencies {
fun main() {
// create a PBKDF2 instance using HMAC SHA-256
// this example uses 32 bytes of length and 100_000 iterations
val kdf = PBKDF2(32, 100_000, `SHA-256`)
val kdf = PBKDF2(32, 100_000, `SHA-256`())
// securely hash value with some salt
val value = "password".encodeToByteArray()

View File

@@ -5,7 +5,7 @@ import com.infendro.plugin.token
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
group = "com.infendro"
version = "1.2.0"
version = "1.2.1"
plugins {
alias(libs.plugins.infendro)