@@ -219,9 +219,9 @@ Using deno.land:
219
219
220
220
``` js
221
221
// use a specific version
222
- import * as hpke from " https://deno.land/x/hpke@1.2.8 /mod.ts" ;
223
- // import * as hpke from "https://deno.land/x/hpke@1.2.8 /core/mod.ts";
224
- // import * as hpke from "https://deno.land/x/hpke@1.2.8 /x/dhkem-x25519/mod.ts";
222
+ import * as hpke from " https://deno.land/x/hpke@1.2.9 /mod.ts" ;
223
+ // import * as hpke from "https://deno.land/x/hpke@1.2.9 /core/mod.ts";
224
+ // import * as hpke from "https://deno.land/x/hpke@1.2.9 /x/dhkem-x25519/mod.ts";
225
225
226
226
// use the latest stable version
227
227
import * as hpke from " https://deno.land/x/hpke/mod.ts" ;
@@ -239,8 +239,8 @@ Using esm.sh:
239
239
``` html
240
240
<!-- use a specific version -->
241
241
<script type =" module" >
242
- import * as hpke from " https://esm.sh/hpke-js@1.2.8 " ;
243
- // import * as hpke from "https://esm.sh/@hpke/core@1.2.8 ";
242
+ import * as hpke from " https://esm.sh/hpke-js@1.2.9 " ;
243
+ // import * as hpke from "https://esm.sh/@hpke/core@1.2.9 ";
244
244
// ...
245
245
</script >
246
246
@@ -257,8 +257,8 @@ Using unpkg:
257
257
``` html
258
258
<!-- use a specific version -->
259
259
<script type =" module" >
260
- import * as hpke from " https://unpkg.com/hpke-js@1.2.8 /esm/mod.js" ;
261
- // import * as hpke from "https://unpkg.com/@hpke/core@1.2.8 /esm/mod.js";
260
+ import * as hpke from " https://unpkg.com/hpke-js@1.2.9 /esm/mod.js" ;
261
+ // import * as hpke from "https://unpkg.com/@hpke/core@1.2.9 /esm/mod.js";
262
262
// ...
263
263
</script >
264
264
```
@@ -338,11 +338,11 @@ try {
338
338
Deno:
339
339
340
340
``` js
341
- import { AeadId , CipherSuite , KdfId , KemId } from " https://deno.land/x/hpke@1.2.8 /mod.ts" ;
341
+ import { AeadId , CipherSuite , KdfId , KemId } from " https://deno.land/x/hpke@1.2.9 /mod.ts" ;
342
342
// import {
343
343
// Aes128Gcm, CipherSuite, HkdfSha256,
344
- // } from "https://deno.land/x/hpke@1.2.8 /core/mod.ts";
345
- // import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.8 /x/dhkem-x25519/mod.ts";
344
+ // } from "https://deno.land/x/hpke@1.2.9 /core/mod.ts";
345
+ // import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.9 /x/dhkem-x25519/mod.ts";
346
346
347
347
async function doHpke () {
348
348
// setup
@@ -425,10 +425,10 @@ Browsers:
425
425
<head ></head >
426
426
<body >
427
427
<script type =" module" >
428
- import { AeadId , CipherSuite , KdfId , KemId } from " https://esm.sh/hpke-js@1.2.8 " ;
428
+ import { AeadId , CipherSuite , KdfId , KemId } from " https://esm.sh/hpke-js@1.2.9 " ;
429
429
// import {
430
430
// Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
431
- // } from "@hpke/core@1.2.8 ";
431
+ // } from "@hpke/core@1.2.9 ";
432
432
433
433
globalThis .doHpke = async () => {
434
434
try {
0 commit comments