upgrade
This commit is contained in:
@@ -5,8 +5,20 @@ interface KDF {
|
||||
val bits: Int
|
||||
get() = bytes * 8
|
||||
|
||||
fun hash(
|
||||
value: UByteArray,
|
||||
salt: UByteArray,
|
||||
): UByteArray
|
||||
fun hashInto(value: ByteArray, salt: ByteArray, destination: ByteArray, destinationOffset: Int = 0)
|
||||
|
||||
fun hashInto(value: ByteArray, salt: ByteArray, destination: UByteArray, destinationOffset: Int = 0) =
|
||||
hashInto(value, salt, destination.asByteArray(), destinationOffset)
|
||||
|
||||
fun hashInto(value: UByteArray, salt: UByteArray, destination: ByteArray, destinationOffset: Int = 0) =
|
||||
hashInto(value.asByteArray(), salt.asByteArray(), destination, destinationOffset)
|
||||
|
||||
fun hashInto(value: UByteArray, salt: UByteArray, destination: UByteArray, destinationOffset: Int = 0) =
|
||||
hashInto(value.asByteArray(), salt.asByteArray(), destination.asByteArray(), destinationOffset)
|
||||
|
||||
fun hash(value: ByteArray, salt: ByteArray): ByteArray =
|
||||
ByteArray(bytes).also { hashInto(value, salt, it) }
|
||||
|
||||
fun hash(value: UByteArray, salt: UByteArray): UByteArray =
|
||||
UByteArray(bytes).also { hashInto(value, salt, it) }
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package com.infendro.kdf
|
||||
|
||||
import com.infendro.bytearray.toUByteArray
|
||||
import com.infendro.bytearray.xor
|
||||
import com.infendro.bytes.bytearray.xorInto
|
||||
import com.infendro.bytes.int.copyInto
|
||||
import com.infendro.hash.HashFunction
|
||||
import com.infendro.kdf.util.ceilDiv
|
||||
import com.infendro.mac.HMAC
|
||||
import kotlin.math.min
|
||||
|
||||
class PBKDF2(
|
||||
override val bytes: Int,
|
||||
@@ -16,34 +16,25 @@ class PBKDF2(
|
||||
require(iterations > 0)
|
||||
}
|
||||
|
||||
private val mac = HMAC(function)
|
||||
private val hmac = HMAC(function)
|
||||
|
||||
override fun hash(
|
||||
value: UByteArray,
|
||||
salt: UByteArray,
|
||||
): UByteArray {
|
||||
return buildList {
|
||||
var i = 1
|
||||
while (size < bytes) {
|
||||
addAll(
|
||||
f(value, salt, i)
|
||||
.sliceArray(0..<min(bytes - size, mac.bytes))
|
||||
)
|
||||
i++
|
||||
}
|
||||
}.toUByteArray()
|
||||
}
|
||||
override fun hashInto(value: ByteArray, salt: ByteArray, destination: ByteArray, destinationOffset: Int) {
|
||||
val buffer = ByteArray(hmac.bytes)
|
||||
|
||||
private fun f(
|
||||
value: UByteArray,
|
||||
salt: UByteArray,
|
||||
iteration: Int,
|
||||
): UByteArray {
|
||||
return buildList {
|
||||
add(mac.hash(value, salt + iteration.toUByteArray()))
|
||||
for (iteration in 1..bytes.ceilDiv(hmac.bytes)) {
|
||||
val offset = (iteration - 1) * hmac.bytes
|
||||
val block = minOf(bytes - offset, hmac.bytes)
|
||||
|
||||
val s = ByteArray(salt.size + 4)
|
||||
salt.copyInto(s)
|
||||
iteration.copyInto(s, salt.size)
|
||||
|
||||
hmac.hashInto(value, s, buffer)
|
||||
buffer.copyInto(destination, destinationOffset + offset, endIndex = block)
|
||||
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,6 +1,5 @@
|
||||
package com.infendro.kdf
|
||||
|
||||
import com.infendro.bytearray.encodeToUByteArray
|
||||
import com.infendro.hash.sha2.`SHA-256`
|
||||
import kotlin.test.Test
|
||||
import kotlin.test.assertContentEquals
|
||||
@@ -15,10 +14,10 @@ class `PBKDF2 Test` {
|
||||
0x43U, 0xe7U, 0x22U, 0x52U, 0x56U, 0xc4U, 0xf8U, 0x37U,
|
||||
0xa8U, 0x65U, 0x48U, 0xc9U, 0x2cU, 0xccU, 0x35U, 0x48U,
|
||||
0x08U, 0x05U, 0x98U, 0x7cU, 0xb7U, 0x0bU, 0xe1U, 0x7bU,
|
||||
)
|
||||
).asByteArray()
|
||||
val actual = function.hash(
|
||||
"password".encodeToUByteArray(),
|
||||
"salt".encodeToUByteArray(),
|
||||
"password".encodeToByteArray(),
|
||||
"salt".encodeToByteArray(),
|
||||
)
|
||||
assertContentEquals(expected, actual)
|
||||
}
|
||||
@@ -32,10 +31,10 @@ class `PBKDF2 Test` {
|
||||
0x2dU, 0x0aU, 0xdfU, 0xf9U, 0x28U, 0xf0U, 0x6dU, 0xd0U,
|
||||
0x2aU, 0x30U, 0x3fU, 0x8eU, 0xf3U, 0xc2U, 0x51U, 0xdfU,
|
||||
0xd6U, 0xe2U, 0xd8U, 0x5aU, 0x95U, 0x47U, 0x4cU, 0x43U,
|
||||
)
|
||||
).asByteArray()
|
||||
val actual = function.hash(
|
||||
"password".encodeToUByteArray(),
|
||||
"salt".encodeToUByteArray(),
|
||||
"password".encodeToByteArray(),
|
||||
"salt".encodeToByteArray(),
|
||||
)
|
||||
assertContentEquals(expected, actual)
|
||||
}
|
||||
@@ -49,10 +48,10 @@ class `PBKDF2 Test` {
|
||||
0xaaU, 0x53U, 0x0dU, 0xb6U, 0x84U, 0x5cU, 0x4cU, 0x8dU,
|
||||
0x96U, 0x28U, 0x93U, 0xa0U, 0x01U, 0xceU, 0x4eU, 0x11U,
|
||||
0xa4U, 0x96U, 0x38U, 0x73U, 0xaaU, 0x98U, 0x13U, 0x4aU,
|
||||
)
|
||||
).asByteArray()
|
||||
val actual = function.hash(
|
||||
"password".encodeToUByteArray(),
|
||||
"salt".encodeToUByteArray(),
|
||||
"password".encodeToByteArray(),
|
||||
"salt".encodeToByteArray(),
|
||||
)
|
||||
assertContentEquals(expected, actual)
|
||||
}
|
||||
@@ -67,10 +66,10 @@ class `PBKDF2 Test` {
|
||||
0x96U, 0x28U, 0x93U, 0xa0U, 0x01U, 0xceU, 0x4eU, 0x11U,
|
||||
0xa4U, 0x96U, 0x38U, 0x73U, 0xaaU, 0x98U, 0x13U, 0x4aU,
|
||||
0xf7U, 0xadU, 0x98U, 0xc1U, 0xb4U, 0x58U, 0xceU, 0x3fU,
|
||||
)
|
||||
).asByteArray()
|
||||
val actual = function.hash(
|
||||
"password".encodeToUByteArray(),
|
||||
"salt".encodeToUByteArray(),
|
||||
"password".encodeToByteArray(),
|
||||
"salt".encodeToByteArray(),
|
||||
)
|
||||
assertContentEquals(expected, actual)
|
||||
}
|
||||
@@ -88,10 +87,10 @@ class `PBKDF2 Test` {
|
||||
0x99U, 0x16U, 0x64U, 0xb3U, 0x9dU, 0x77U, 0xefU, 0x31U,
|
||||
0x7cU, 0x71U, 0xb8U, 0x45U, 0xb1U, 0xe3U, 0x0bU, 0xd5U,
|
||||
0x09U, 0x11U, 0x20U, 0x41U, 0xd3U, 0xa1U, 0x97U, 0x83U,
|
||||
)
|
||||
).asByteArray()
|
||||
val actual = function.hash(
|
||||
"passwd".encodeToUByteArray(),
|
||||
"salt".encodeToUByteArray(),
|
||||
"passwd".encodeToByteArray(),
|
||||
"salt".encodeToByteArray(),
|
||||
)
|
||||
assertContentEquals(expected, actual)
|
||||
}
|
||||
@@ -109,10 +108,10 @@ class `PBKDF2 Test` {
|
||||
0x9aU, 0xdbU, 0x84U, 0x1bU, 0x51U, 0xc9U, 0xb3U, 0x17U,
|
||||
0x6aU, 0x27U, 0x2bU, 0xdeU, 0xbbU, 0xa1U, 0xd0U, 0x78U,
|
||||
0x47U, 0x8fU, 0x62U, 0xb3U, 0x97U, 0xf3U, 0x3cU, 0x8dU,
|
||||
)
|
||||
).asByteArray()
|
||||
val actual = function.hash(
|
||||
"Password".encodeToByteArray().toUByteArray(),
|
||||
"NaCl".encodeToByteArray().toUByteArray()
|
||||
"Password".encodeToByteArray(),
|
||||
"NaCl".encodeToByteArray(),
|
||||
)
|
||||
assertContentEquals(expected, actual)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user