Bump version to 1.2.1
All checks were successful
/ test (pull_request) Successful in 43s

This commit is contained in:
2026-03-11 23:54:11 +01:00
parent d4c316ae00
commit 8f80ceaf7f
2 changed files with 3 additions and 3 deletions

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()