Skip to content

Commit fad13d2

Browse files
committed
Move dhkem-secp256k1 impl to x/dhkem-secp256k1.
1 parent faaf6ae commit fad13d2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

x/dhkem-secp256k1/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { DhkemSecp256k1HkdfSha256 } from "../../src/kems/dhkemSecp256k1.ts";
1+
export { DhkemSecp256k1HkdfSha256 } from "./src/dhkemSecp256k1.ts";

src/kems/dhkemSecp256k1.ts renamed to x/dhkem-secp256k1/src/dhkemSecp256k1.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { Dhkem, KemId } from "../../mod_core.ts";
2-
import { HkdfSha256 } from "../../x/dhkem-x25519/mod.ts";
1+
import { Dhkem, KemId } from "../../../mod_core.ts";
2+
import { HkdfSha256 } from "../../../x/dhkem-x25519/mod.ts";
33

4-
import { Secp256k1 } from "./dhkemPrimitives/secp256k1.ts";
4+
import { Secp256k1 } from "./secp256k1.ts";
55

66
/**
77
* The DHKEM(secp256k1, HKDF-SHA256) for HPKE KEM implementing {@link KemInterface}.
File renamed without changes.

0 commit comments

Comments
 (0)