1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests/unit_node/crypto/crypto_hkdf_test.ts
2024-07-25 15:30:28 +10:00

36 lines
926 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { hkdfSync } from "node:crypto";
import { assertEquals } from "@std/assert";
import { Buffer } from "node:buffer";
import nodeFixtures from "../testdata/crypto_digest_fixtures.json" with {
type: "json",
};
Deno.test("crypto.hkdfSync - compare with node", async (t) => {
const DATA = "Hello, world!";
const SALT = "salt";
const INFO = "info";
const KEY_LEN = 64;
for (const { digest, hkdf } of nodeFixtures) {
await t.step({
name: digest,
ignore: digest.includes("blake"),
fn() {
let actual: string | null;
try {
actual = Buffer.from(hkdfSync(
digest,
DATA,
SALT,
INFO,
KEY_LEN,
)).toString("hex");
} catch {
actual = null;
}
assertEquals(actual, hkdf);
},
});
}
});