Skip to content

Commit

Permalink
Fix the name of X-Wing class.
Browse files Browse the repository at this point in the history
  • Loading branch information
dajiaji committed Nov 3, 2024
1 parent b4ebbe6 commit 2c43b52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/hybridkem-x-wing/samples/deno/main.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Aes256Gcm, CipherSuite, HkdfSha256 } from "@hpke/core";
import { XWing } from "@hpke/hybridkem-x-wing";
import { HybridkemXWing } from "@hpke/hybridkem-x-wing";

async function doHpke() {
// setup
const suite = new CipherSuite({
kem: new XWing(),
kem: new HybridkemXWing(),
kdf: new HkdfSha256(),
aead: new Aes256Gcm(),
});
Expand Down

0 comments on commit 2c43b52

Please sign in to comment.