2023-05-10 13:50:04 +00:00
|
|
|
# nim-eth
|
|
|
|
# Copyright (c) 2020-2023 Status Research & Development GmbH
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
#
|
|
|
|
|
|
|
|
{.push raises: [].}
|
|
|
|
|
2022-09-05 09:09:38 +00:00
|
|
|
import
|
|
|
|
nimcrypto/[hmac, hash]
|
|
|
|
|
|
|
|
export hmac, hash
|
2019-12-16 19:38:45 +00:00
|
|
|
|
2023-05-10 13:50:04 +00:00
|
|
|
proc hkdf*(
|
|
|
|
HashType: typedesc, ikm, salt, info: openArray[byte],
|
2021-12-20 12:14:50 +00:00
|
|
|
output: var openArray[byte]) =
|
2019-12-16 19:38:45 +00:00
|
|
|
var ctx: HMAC[HashType]
|
|
|
|
ctx.init(salt)
|
2020-04-24 13:40:30 +00:00
|
|
|
ctx.update(ikm)
|
2019-12-16 19:38:45 +00:00
|
|
|
let prk = ctx.finish().data
|
|
|
|
const hashLen = HashType.bits div 8
|
|
|
|
|
|
|
|
var t: MDigest[HashType.bits]
|
|
|
|
|
|
|
|
var numIters = output.len div hashLen
|
|
|
|
if output.len mod hashLen != 0:
|
|
|
|
inc numIters
|
|
|
|
|
|
|
|
for i in 0 ..< numIters:
|
|
|
|
ctx.init(prk)
|
|
|
|
if i != 0:
|
|
|
|
ctx.update(t.data)
|
|
|
|
ctx.update(info)
|
|
|
|
ctx.update([uint8(i + 1)])
|
|
|
|
t = ctx.finish()
|
|
|
|
let iStart = i * hashLen
|
|
|
|
var sz = hashLen
|
|
|
|
if iStart + sz >= output.len:
|
|
|
|
sz = output.len - iStart
|
|
|
|
copyMem(addr output[iStart], addr t.data, sz)
|
|
|
|
|
|
|
|
ctx.clear()
|