We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faaf6ae commit fad13d2Copy full SHA for fad13d2
x/dhkem-secp256k1/mod.ts
@@ -1 +1 @@
1
-export { DhkemSecp256k1HkdfSha256 } from "../../src/kems/dhkemSecp256k1.ts";
+export { DhkemSecp256k1HkdfSha256 } from "./src/dhkemSecp256k1.ts";
src/kems/dhkemSecp256k1.ts renamed to x/dhkem-secp256k1/src/dhkemSecp256k1.ts
@@ -1,7 +1,7 @@
-import { Dhkem, KemId } from "../../mod_core.ts";
2
-import { HkdfSha256 } from "../../x/dhkem-x25519/mod.ts";
+import { Dhkem, KemId } from "../../../mod_core.ts";
+import { HkdfSha256 } from "../../../x/dhkem-x25519/mod.ts";
3
4
-import { Secp256k1 } from "./dhkemPrimitives/secp256k1.ts";
+import { Secp256k1 } from "./secp256k1.ts";
5
6
/**
7
* The DHKEM(secp256k1, HKDF-SHA256) for HPKE KEM implementing {@link KemInterface}.
src/kems/dhkemPrimitives/secp256k1.ts renamed to x/dhkem-secp256k1/src/secp256k1.ts
0 commit comments