Merge pull request '1.2.0 release' (#6) from develop into main
All checks were successful
/ publish (push) Successful in 2m39s
All checks were successful
/ publish (push) Successful in 2m39s
Reviewed-on: Infendro/kdf-kt#6
This commit was merged in pull request #6.
This commit is contained in:
@@ -1,36 +0,0 @@
|
|||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
env:
|
|
||||||
INFENDRO__TOKEN: ${{ secrets.TOKEN }}
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
publish:
|
|
||||||
runs-on: linux
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- uses: actions/cache/restore@v4
|
|
||||||
with:
|
|
||||||
key: gradle
|
|
||||||
path: |
|
|
||||||
~/.gradle/caches/
|
|
||||||
~/.gradle/wrapper/
|
|
||||||
~/.konan/
|
|
||||||
|
|
||||||
- uses: actions/setup-java@v4
|
|
||||||
with:
|
|
||||||
java-version: '24'
|
|
||||||
distribution: 'temurin'
|
|
||||||
|
|
||||||
- run: ./gradlew publish
|
|
||||||
|
|
||||||
- uses: actions/cache/save@v4
|
|
||||||
with:
|
|
||||||
key: gradle
|
|
||||||
path: |
|
|
||||||
~/.gradle/caches/
|
|
||||||
~/.gradle/wrapper/
|
|
||||||
~/.konan/
|
|
||||||
47
.gitea/workflows/publish.yaml
Normal file
47
.gitea/workflows/publish.yaml
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
runs-on: linux
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Java
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
java-version: '24'
|
||||||
|
distribution: 'temurin'
|
||||||
|
|
||||||
|
- name: Cache Gradle
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
key: gradle-${{ hashFiles('**/libs.versions.toml') }}
|
||||||
|
restore-keys: gradle
|
||||||
|
path: |
|
||||||
|
~/.gradle/caches/
|
||||||
|
~/.gradle/wrapper/
|
||||||
|
|
||||||
|
- name: Cache Konan
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
key: konan-${{ hashFiles('**/libs.versions.toml') }}
|
||||||
|
restore-keys: konan
|
||||||
|
path: |
|
||||||
|
~/.konan/
|
||||||
|
|
||||||
|
- name: Cache Node
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
key: node-${{ hashFiles('**/libs.versions.toml') }}
|
||||||
|
restore-keys: node
|
||||||
|
path: |
|
||||||
|
~/.gradle/nodejs
|
||||||
|
~/.gradle/yarn
|
||||||
|
|
||||||
|
- name: Publish
|
||||||
|
run: ./gradlew publish
|
||||||
|
env:
|
||||||
|
INFENDRO__TOKEN: ${{ secrets.TOKEN }}
|
||||||
28
.gitea/workflows/test.yaml
Normal file
28
.gitea/workflows/test.yaml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: linux
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Java
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
java-version: '24'
|
||||||
|
distribution: 'temurin'
|
||||||
|
|
||||||
|
- name: Cache Gradle
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
key: gradle-${{ hashFiles('**/libs.versions.toml') }}
|
||||||
|
restore-keys: gradle
|
||||||
|
path: |
|
||||||
|
~/.gradle/caches/
|
||||||
|
~/.gradle/wrapper/
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: ./gradlew jvmTest
|
||||||
24
README.md
24
README.md
@@ -1,19 +1,10 @@
|
|||||||
# kdf-kt
|
# kdf-kt
|
||||||
|
|
||||||
`kdf-kt` is a Kotlin Multiplatform library that provides common key derivation functions.
|
`kdf-kt` is a Kotlin Multiplatform library that provides common [Key Derivation Functions](https://en.wikipedia.org/wiki/Key_derivation_function).
|
||||||
|
|
||||||
Supported functions:
|
Supported algorithms:
|
||||||
- PBKDF2
|
- PBKDF2
|
||||||
|
|
||||||
## Targets
|
|
||||||
|
|
||||||
| Target | Status |
|
|
||||||
|------------------|---------------|
|
|
||||||
| JVM | Supported |
|
|
||||||
| JavaScript | Supported |
|
|
||||||
| Native (Linux) | Supported |
|
|
||||||
| Native (Windows) | Not Supported |
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Add the following to your `build.gradle.kts`.
|
Add the following to your `build.gradle.kts`.
|
||||||
@@ -24,24 +15,21 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("com.infendro:kdf:1.1.0")
|
implementation("com.infendro:kdf:1.2.0")
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```kotlin
|
```kotlin
|
||||||
import com.infendro.hash.`SHA-256`
|
|
||||||
import com.infendro.kdf.PBKDF2
|
|
||||||
|
|
||||||
fun main() {
|
fun main() {
|
||||||
// create a PBKDF2 instance using HMAC SHA256
|
// create a PBKDF2 instance using HMAC SHA-256
|
||||||
// this example uses 32 bytes of length and 100_000 iterations
|
// 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
|
// securely hash value with some salt
|
||||||
val value = "password".encodeToByteArray().asUByteArray()
|
val value = "password".encodeToByteArray()
|
||||||
val salt = "salt".encodeToByteArray().asUByteArray()
|
val salt = "salt".encodeToByteArray()
|
||||||
val hash = kdf.hash(value, salt)
|
val hash = kdf.hash(value, salt)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
|
@file:OptIn(ExperimentalWasmDsl::class)
|
||||||
|
|
||||||
import com.infendro.plugin.infendro
|
import com.infendro.plugin.infendro
|
||||||
import com.infendro.plugin.token
|
import com.infendro.plugin.token
|
||||||
|
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
|
||||||
|
|
||||||
group = "com.infendro"
|
group = "com.infendro"
|
||||||
version = "1.1.0"
|
version = "1.2.0"
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
alias(libs.plugins.infendro)
|
alias(libs.plugins.infendro)
|
||||||
@@ -12,10 +15,14 @@ plugins {
|
|||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
jvm()
|
jvm()
|
||||||
js {
|
|
||||||
nodejs()
|
|
||||||
}
|
|
||||||
linuxX64()
|
linuxX64()
|
||||||
|
linuxArm64()
|
||||||
|
mingwX64()
|
||||||
|
macosX64()
|
||||||
|
macosArm64()
|
||||||
|
js { nodejs() }
|
||||||
|
wasmJs { nodejs() }
|
||||||
|
wasmWasi { nodejs() }
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
infendro()
|
infendro()
|
||||||
@@ -24,18 +31,14 @@ kotlin {
|
|||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
commonMain.dependencies {
|
commonMain.dependencies {
|
||||||
implementation(libs.mac)
|
implementation(libs.bytes)
|
||||||
implementation(libs.hash)
|
implementation(libs.hash)
|
||||||
implementation(libs.bytearray)
|
implementation(libs.mac)
|
||||||
}
|
}
|
||||||
commonTest.dependencies {
|
commonTest.dependencies {
|
||||||
implementation(libs.test)
|
implementation(libs.test)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
compilerOptions {
|
|
||||||
freeCompilerArgs.add("-opt-in=kotlin.ExperimentalUnsignedTypes")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing.repositories {
|
publishing.repositories {
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
[versions]
|
[versions]
|
||||||
infendro = "1.0.0"
|
infendro = "1.1.0"
|
||||||
kotlin = "2.2.21"
|
kotlin = "2.3.0"
|
||||||
mac = "1.2.0"
|
bytes = "1.4.0"
|
||||||
hash = "1.3.2"
|
hash = "1.6.0"
|
||||||
bytearray = "1.2.4"
|
mac = "1.4.0"
|
||||||
|
|
||||||
[plugins]
|
[plugins]
|
||||||
infendro = { id = "com.infendro.plugin", version.ref = "infendro" }
|
infendro = { id = "com.infendro.plugin", version.ref = "infendro" }
|
||||||
multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
|
multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
mac = { module = "com.infendro:mac", version.ref = "mac" }
|
bytes = { module = "com.infendro:bytes", version.ref = "bytes" }
|
||||||
hash = { module = "com.infendro:hash", version.ref = "hash" }
|
hash = { module = "com.infendro:hash", version.ref = "hash" }
|
||||||
bytearray = { module = "com.infendro:bytearray", version.ref = "bytearray" }
|
mac = { module = "com.infendro:mac", version.ref = "mac" }
|
||||||
test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
|
test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
|
||||||
|
|||||||
@@ -5,8 +5,11 @@ interface KDF {
|
|||||||
val bits: Int
|
val bits: Int
|
||||||
get() = bytes * 8
|
get() = bytes * 8
|
||||||
|
|
||||||
fun hash(
|
fun hashInto(value: ByteArray, salt: ByteArray, destination: ByteArray, destinationOffset: Int = 0)
|
||||||
value: UByteArray,
|
|
||||||
salt: UByteArray,
|
fun hash(value: ByteArray, salt: ByteArray): ByteArray {
|
||||||
): UByteArray
|
val result = ByteArray(bytes)
|
||||||
|
hashInto(value, salt, result)
|
||||||
|
return result
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
package com.infendro.kdf
|
package com.infendro.kdf
|
||||||
|
|
||||||
import com.infendro.bytearray.toUByteArray
|
import com.infendro.bytes.bytearray.xorInto
|
||||||
import com.infendro.bytearray.xor
|
import com.infendro.bytes.int.copyInto
|
||||||
import com.infendro.hash.HashFunction
|
import com.infendro.hash.HashFunction
|
||||||
|
import com.infendro.kdf.util.ceilDiv
|
||||||
import com.infendro.mac.HMAC
|
import com.infendro.mac.HMAC
|
||||||
import kotlin.math.min
|
|
||||||
|
|
||||||
class PBKDF2(
|
class PBKDF2(
|
||||||
override val bytes: Int,
|
override val bytes: Int,
|
||||||
@@ -16,34 +16,23 @@ class PBKDF2(
|
|||||||
require(iterations > 0)
|
require(iterations > 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
private val mac = HMAC(function)
|
private val hmac = HMAC(function)
|
||||||
|
|
||||||
override fun hash(
|
override fun hashInto(value: ByteArray, salt: ByteArray, destination: ByteArray, destinationOffset: Int) {
|
||||||
value: UByteArray,
|
for (iteration in 1..bytes.ceilDiv(hmac.bytes)) {
|
||||||
salt: UByteArray,
|
val offset = (iteration - 1) * hmac.bytes
|
||||||
): UByteArray {
|
val block = minOf(bytes - offset, hmac.bytes)
|
||||||
return buildList {
|
|
||||||
var i = 1
|
|
||||||
while (size < bytes) {
|
|
||||||
addAll(
|
|
||||||
f(value, salt, i)
|
|
||||||
.sliceArray(0..<min(bytes - size, mac.bytes))
|
|
||||||
)
|
|
||||||
i++
|
|
||||||
}
|
|
||||||
}.toUByteArray()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun f(
|
val s = ByteArray(salt.size + 4)
|
||||||
value: UByteArray,
|
salt.copyInto(s)
|
||||||
salt: UByteArray,
|
iteration.copyInto(s, salt.size)
|
||||||
iteration: Int,
|
|
||||||
): UByteArray {
|
val buffer = hmac.hash(value, s)
|
||||||
return buildList {
|
buffer.copyInto(destination, destinationOffset + offset, endIndex = block)
|
||||||
add(mac.hash(value, salt + iteration.toUByteArray()))
|
|
||||||
repeat(iterations - 1) {
|
repeat(iterations - 1) {
|
||||||
add(mac.hash(value, last()))
|
hmac.hashInto(value, buffer, buffer)
|
||||||
}
|
buffer.xorInto(destination, destinationOffset + offset, endIndex = block)
|
||||||
}.reduce { acc, bytes -> acc xor bytes }
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
4
src/commonMain/kotlin/com/infendro/kdf/util/Math.kt
Normal file
4
src/commonMain/kotlin/com/infendro/kdf/util/Math.kt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
package com.infendro.kdf.util
|
||||||
|
|
||||||
|
internal fun Int.ceilDiv(n: Int): Int =
|
||||||
|
(this + n - 1) / n
|
||||||
@@ -1,13 +1,12 @@
|
|||||||
package com.infendro.kdf
|
package com.infendro.kdf
|
||||||
|
|
||||||
import com.infendro.bytearray.encodeToUByteArray
|
|
||||||
import com.infendro.hash.sha2.`SHA-256`
|
import com.infendro.hash.sha2.`SHA-256`
|
||||||
import kotlin.test.Test
|
import kotlin.test.Test
|
||||||
import kotlin.test.assertContentEquals
|
import kotlin.test.assertContentEquals
|
||||||
|
|
||||||
class `PBKDF2 Test` {
|
class `PBKDF2 Test` {
|
||||||
@Test
|
@Test
|
||||||
fun `32 bytes, 1 iteration`() {
|
fun `32 bytes 1 iteration`() {
|
||||||
val function = PBKDF2(32, 1, `SHA-256`)
|
val function = PBKDF2(32, 1, `SHA-256`)
|
||||||
|
|
||||||
val expected = ubyteArrayOf(
|
val expected = ubyteArrayOf(
|
||||||
@@ -15,16 +14,16 @@ class `PBKDF2 Test` {
|
|||||||
0x43U, 0xe7U, 0x22U, 0x52U, 0x56U, 0xc4U, 0xf8U, 0x37U,
|
0x43U, 0xe7U, 0x22U, 0x52U, 0x56U, 0xc4U, 0xf8U, 0x37U,
|
||||||
0xa8U, 0x65U, 0x48U, 0xc9U, 0x2cU, 0xccU, 0x35U, 0x48U,
|
0xa8U, 0x65U, 0x48U, 0xc9U, 0x2cU, 0xccU, 0x35U, 0x48U,
|
||||||
0x08U, 0x05U, 0x98U, 0x7cU, 0xb7U, 0x0bU, 0xe1U, 0x7bU,
|
0x08U, 0x05U, 0x98U, 0x7cU, 0xb7U, 0x0bU, 0xe1U, 0x7bU,
|
||||||
)
|
).asByteArray()
|
||||||
val actual = function.hash(
|
val actual = function.hash(
|
||||||
"password".encodeToUByteArray(),
|
"password".encodeToByteArray(),
|
||||||
"salt".encodeToUByteArray(),
|
"salt".encodeToByteArray(),
|
||||||
)
|
)
|
||||||
assertContentEquals(expected, actual)
|
assertContentEquals(expected, actual)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `32 bytes, 2 iterations`() {
|
fun `32 bytes 2 iterations`() {
|
||||||
val function = PBKDF2(32, 2, `SHA-256`)
|
val function = PBKDF2(32, 2, `SHA-256`)
|
||||||
|
|
||||||
val expected = ubyteArrayOf(
|
val expected = ubyteArrayOf(
|
||||||
@@ -32,16 +31,16 @@ class `PBKDF2 Test` {
|
|||||||
0x2dU, 0x0aU, 0xdfU, 0xf9U, 0x28U, 0xf0U, 0x6dU, 0xd0U,
|
0x2dU, 0x0aU, 0xdfU, 0xf9U, 0x28U, 0xf0U, 0x6dU, 0xd0U,
|
||||||
0x2aU, 0x30U, 0x3fU, 0x8eU, 0xf3U, 0xc2U, 0x51U, 0xdfU,
|
0x2aU, 0x30U, 0x3fU, 0x8eU, 0xf3U, 0xc2U, 0x51U, 0xdfU,
|
||||||
0xd6U, 0xe2U, 0xd8U, 0x5aU, 0x95U, 0x47U, 0x4cU, 0x43U,
|
0xd6U, 0xe2U, 0xd8U, 0x5aU, 0x95U, 0x47U, 0x4cU, 0x43U,
|
||||||
)
|
).asByteArray()
|
||||||
val actual = function.hash(
|
val actual = function.hash(
|
||||||
"password".encodeToUByteArray(),
|
"password".encodeToByteArray(),
|
||||||
"salt".encodeToUByteArray(),
|
"salt".encodeToByteArray(),
|
||||||
)
|
)
|
||||||
assertContentEquals(expected, actual)
|
assertContentEquals(expected, actual)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `32 bytes, 4096 iterations`() {
|
fun `32 bytes 4096 iterations`() {
|
||||||
val function = PBKDF2(32, 4096, `SHA-256`)
|
val function = PBKDF2(32, 4096, `SHA-256`)
|
||||||
|
|
||||||
val expected = ubyteArrayOf(
|
val expected = ubyteArrayOf(
|
||||||
@@ -49,16 +48,16 @@ class `PBKDF2 Test` {
|
|||||||
0xaaU, 0x53U, 0x0dU, 0xb6U, 0x84U, 0x5cU, 0x4cU, 0x8dU,
|
0xaaU, 0x53U, 0x0dU, 0xb6U, 0x84U, 0x5cU, 0x4cU, 0x8dU,
|
||||||
0x96U, 0x28U, 0x93U, 0xa0U, 0x01U, 0xceU, 0x4eU, 0x11U,
|
0x96U, 0x28U, 0x93U, 0xa0U, 0x01U, 0xceU, 0x4eU, 0x11U,
|
||||||
0xa4U, 0x96U, 0x38U, 0x73U, 0xaaU, 0x98U, 0x13U, 0x4aU,
|
0xa4U, 0x96U, 0x38U, 0x73U, 0xaaU, 0x98U, 0x13U, 0x4aU,
|
||||||
)
|
).asByteArray()
|
||||||
val actual = function.hash(
|
val actual = function.hash(
|
||||||
"password".encodeToUByteArray(),
|
"password".encodeToByteArray(),
|
||||||
"salt".encodeToUByteArray(),
|
"salt".encodeToByteArray(),
|
||||||
)
|
)
|
||||||
assertContentEquals(expected, actual)
|
assertContentEquals(expected, actual)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `40 bytes, 4096 iterations`() {
|
fun `40 bytes 4096 iterations`() {
|
||||||
val function = PBKDF2(40, 4096, `SHA-256`)
|
val function = PBKDF2(40, 4096, `SHA-256`)
|
||||||
|
|
||||||
val expected = ubyteArrayOf(
|
val expected = ubyteArrayOf(
|
||||||
@@ -67,16 +66,16 @@ class `PBKDF2 Test` {
|
|||||||
0x96U, 0x28U, 0x93U, 0xa0U, 0x01U, 0xceU, 0x4eU, 0x11U,
|
0x96U, 0x28U, 0x93U, 0xa0U, 0x01U, 0xceU, 0x4eU, 0x11U,
|
||||||
0xa4U, 0x96U, 0x38U, 0x73U, 0xaaU, 0x98U, 0x13U, 0x4aU,
|
0xa4U, 0x96U, 0x38U, 0x73U, 0xaaU, 0x98U, 0x13U, 0x4aU,
|
||||||
0xf7U, 0xadU, 0x98U, 0xc1U, 0xb4U, 0x58U, 0xceU, 0x3fU,
|
0xf7U, 0xadU, 0x98U, 0xc1U, 0xb4U, 0x58U, 0xceU, 0x3fU,
|
||||||
)
|
).asByteArray()
|
||||||
val actual = function.hash(
|
val actual = function.hash(
|
||||||
"password".encodeToUByteArray(),
|
"password".encodeToByteArray(),
|
||||||
"salt".encodeToUByteArray(),
|
"salt".encodeToByteArray(),
|
||||||
)
|
)
|
||||||
assertContentEquals(expected, actual)
|
assertContentEquals(expected, actual)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `64 bytes, 1 iteration`() {
|
fun `64 bytes 1 iteration`() {
|
||||||
val function = PBKDF2(64, 1, `SHA-256`)
|
val function = PBKDF2(64, 1, `SHA-256`)
|
||||||
|
|
||||||
val expected = ubyteArrayOf(
|
val expected = ubyteArrayOf(
|
||||||
@@ -88,16 +87,16 @@ class `PBKDF2 Test` {
|
|||||||
0x99U, 0x16U, 0x64U, 0xb3U, 0x9dU, 0x77U, 0xefU, 0x31U,
|
0x99U, 0x16U, 0x64U, 0xb3U, 0x9dU, 0x77U, 0xefU, 0x31U,
|
||||||
0x7cU, 0x71U, 0xb8U, 0x45U, 0xb1U, 0xe3U, 0x0bU, 0xd5U,
|
0x7cU, 0x71U, 0xb8U, 0x45U, 0xb1U, 0xe3U, 0x0bU, 0xd5U,
|
||||||
0x09U, 0x11U, 0x20U, 0x41U, 0xd3U, 0xa1U, 0x97U, 0x83U,
|
0x09U, 0x11U, 0x20U, 0x41U, 0xd3U, 0xa1U, 0x97U, 0x83U,
|
||||||
)
|
).asByteArray()
|
||||||
val actual = function.hash(
|
val actual = function.hash(
|
||||||
"passwd".encodeToUByteArray(),
|
"passwd".encodeToByteArray(),
|
||||||
"salt".encodeToUByteArray(),
|
"salt".encodeToByteArray(),
|
||||||
)
|
)
|
||||||
assertContentEquals(expected, actual)
|
assertContentEquals(expected, actual)
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `64 bytes, 80,000 iterations`() {
|
fun `64 bytes 80000 iterations`() {
|
||||||
val function = PBKDF2(64, 80_000, `SHA-256`)
|
val function = PBKDF2(64, 80_000, `SHA-256`)
|
||||||
|
|
||||||
val expected = ubyteArrayOf(
|
val expected = ubyteArrayOf(
|
||||||
@@ -109,10 +108,10 @@ class `PBKDF2 Test` {
|
|||||||
0x9aU, 0xdbU, 0x84U, 0x1bU, 0x51U, 0xc9U, 0xb3U, 0x17U,
|
0x9aU, 0xdbU, 0x84U, 0x1bU, 0x51U, 0xc9U, 0xb3U, 0x17U,
|
||||||
0x6aU, 0x27U, 0x2bU, 0xdeU, 0xbbU, 0xa1U, 0xd0U, 0x78U,
|
0x6aU, 0x27U, 0x2bU, 0xdeU, 0xbbU, 0xa1U, 0xd0U, 0x78U,
|
||||||
0x47U, 0x8fU, 0x62U, 0xb3U, 0x97U, 0xf3U, 0x3cU, 0x8dU,
|
0x47U, 0x8fU, 0x62U, 0xb3U, 0x97U, 0xf3U, 0x3cU, 0x8dU,
|
||||||
)
|
).asByteArray()
|
||||||
val actual = function.hash(
|
val actual = function.hash(
|
||||||
"Password".encodeToByteArray().toUByteArray(),
|
"Password".encodeToByteArray(),
|
||||||
"NaCl".encodeToByteArray().toUByteArray()
|
"NaCl".encodeToByteArray(),
|
||||||
)
|
)
|
||||||
assertContentEquals(expected, actual)
|
assertContentEquals(expected, actual)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user