Skip to content

Commit 2803aef

Browse files
authoredAug 5, 2024··
Merge pull request #313 from dajiaji/bump-to-1_2_9
Bump version to 1.2.9.
2 parents bdfde91 + c58a5b5 commit 2803aef

File tree

13 files changed

+84
-76
lines changed

13 files changed

+84
-76
lines changed
 

‎CHANGES.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changes
22

3+
## Version 1.2.9
4+
5+
Released 2024-08-05
6+
7+
- Update devDependencies:
8+
- [(#311) Bump dnt to 0.41.2.](https://github.com/dajiaji/hpke-js/pull/311)
9+
310
## Version 1.2.8
411

512
Released 2024-08-04

‎README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,9 @@ Using deno.land:
219219

220220
```js
221221
// 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";
225225

226226
// use the latest stable version
227227
import * as hpke from "https://deno.land/x/hpke/mod.ts";
@@ -239,8 +239,8 @@ Using esm.sh:
239239
```html
240240
<!-- use a specific version -->
241241
<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";
244244
// ...
245245
</script>
246246

@@ -257,8 +257,8 @@ Using unpkg:
257257
```html
258258
<!-- use a specific version -->
259259
<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";
262262
// ...
263263
</script>
264264
```
@@ -338,11 +338,11 @@ try {
338338
Deno:
339339

340340
```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";
342342
// import {
343343
// 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";
346346

347347
async function doHpke() {
348348
// setup
@@ -425,10 +425,10 @@ Browsers:
425425
<head></head>
426426
<body>
427427
<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";
429429
// import {
430430
// Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
431-
// } from "@hpke/core@1.2.8";
431+
// } from "@hpke/core@1.2.9";
432432
433433
globalThis.doHpke = async () => {
434434
try {

‎SECURITY.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
| Version | Supported |
66
| ------- | ------------------ |
77
| 1.2.x | :white_check_mark: |
8+
| 1.2.8 | :x: |
89
| 0.22.x | :white_check_mark: |
910
| < 1.2 | :x: |
1011
| < 0.22 | :x: |

‎core/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Using deno.land:
4444

4545
```js
4646
// use a specific version
47-
import * as hpke from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
47+
import * as hpke from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
4848

4949
// use the latest stable version
5050
import * as hpke from "https://deno.land/x/hpke/core/mod.ts";
@@ -60,7 +60,7 @@ Using esm.sh:
6060
```html
6161
<!-- use a specific version -->
6262
<script type="module">
63-
import * as hpke from "https://esm.sh/@hpke/core@1.2.8";
63+
import * as hpke from "https://esm.sh/@hpke/core@1.2.9";
6464
// ...
6565
</script>
6666

@@ -76,7 +76,7 @@ Using unpkg:
7676
```html
7777
<!-- use a specific version -->
7878
<script type="module">
79-
import * as hpke from "https://unpkg.com/@hpke/core@1.2.8/esm/mod.js";
79+
import * as hpke from "https://unpkg.com/@hpke/core@1.2.9/esm/mod.js";
8080
// ...
8181
</script>
8282
```
@@ -149,7 +149,7 @@ try {
149149
```js
150150
import {
151151
Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
152-
} from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
152+
} from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
153153

154154
async function doHpke() {
155155
// setup
@@ -194,10 +194,10 @@ try {
194194
<head></head>
195195
<body>
196196
<script type="module">
197-
// import * as hpke from "https://esm.sh/hpke-js@1.2.8";
197+
// import * as hpke from "https://esm.sh/hpke-js@1.2.9";
198198
import {
199199
Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
200-
} from "https://esm.sh/@hpke/core@1.2.8";
200+
} from "https://esm.sh/@hpke/core@1.2.9";
201201
202202
globalThis.doHpke = async () => {
203203

‎samples/deno/app.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// import {
22
// Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
3-
// } from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
4-
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.8/x/dhkem-x25519/mod.ts";
3+
// } from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
4+
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.9/x/dhkem-x25519/mod.ts";
55
import {
66
AeadId,
77
CipherSuite,
88
KdfId,
99
KemId,
10-
} from "https://deno.land/x/hpke@1.2.8/mod.ts";
10+
} from "https://deno.land/x/hpke@1.2.9/mod.ts";
1111

1212
async function doHpke() {
1313
const suite = new CipherSuite({

‎samples/node/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"author": "Ajitomi Daisuke <ajitomi@gmail.com> (https://github.com/dajiaji)",
88
"license": "MIT",
99
"dependencies": {
10-
"@hpke/core": "^1.2.8",
11-
"@hpke/dhkem-x25519": "^1.2.8"
10+
"@hpke/core": "^1.2.9",
11+
"@hpke/dhkem-x25519": "^1.2.9"
1212
}
1313
}

‎samples/ts-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "Ajitomi Daisuke <ajitomi@gmail.com> (https://github.com/dajiaji)",
77
"license": "MIT",
88
"dependencies": {
9-
"@hpke/core": "^1.2.8",
9+
"@hpke/core": "^1.2.9",
1010
"ts-node": "^10.7.0"
1111
}
1212
}

‎samples/ts-webpack/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"webpack-cli": "^5.1.4"
1414
},
1515
"dependencies": {
16-
"@hpke/core": "^1.2.8"
16+
"@hpke/core": "^1.2.9"
1717
}
1818
}

‎x/chacha20poly1305/README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ Using deno.land:
4545

4646
```js
4747
// use a specific version
48-
import * as hpke from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
49-
import * as chacha20 from "https://deno.land/x/hpke@1.2.8/x/chacha20poly1305/mod.ts";
48+
import * as hpke from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
49+
import * as chacha20 from "https://deno.land/x/hpke@1.2.9/x/chacha20poly1305/mod.ts";
5050

5151
// use the latest stable version
5252
import * as hpke from "https://deno.land/x/hpke/core/mod.ts";
@@ -63,8 +63,8 @@ Using esm.sh:
6363
```html
6464
<!-- use a specific version -->
6565
<script type="module">
66-
import * as hpke from "https://esm.sh/@hpke/core@1.2.8";
67-
import * as chacha20 from "https://esm.sh/@hpke/chacha20poly1305@1.2.8";
66+
import * as hpke from "https://esm.sh/@hpke/core@1.2.9";
67+
import * as chacha20 from "https://esm.sh/@hpke/chacha20poly1305@1.2.9";
6868
// ...
6969
</script>
7070

@@ -81,8 +81,8 @@ Using unpkg:
8181
```html
8282
<!-- use a specific version -->
8383
<script type="module">
84-
import * as hpke from "https://unpkg.com/@hpke/core@1.2.8/esm/mod.js";
85-
import * as chacha20 from "https://unpkg.com/@hpke/chacha20poly1305@1.2.8/esm/mod.js";
84+
import * as hpke from "https://unpkg.com/@hpke/core@1.2.9/esm/mod.js";
85+
import * as chacha20 from "https://unpkg.com/@hpke/chacha20poly1305@1.2.9/esm/mod.js";
8686
// ...
8787
</script>
8888
```
@@ -149,8 +149,8 @@ try {
149149
```js
150150
import {
151151
CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
152-
} from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
153-
import { Chacha20Poly1305 } from "https://deno.land/x/hpke@1.2.8/x/chacha20poly1305/mod.ts";
152+
} from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
153+
import { Chacha20Poly1305 } from "https://deno.land/x/hpke@1.2.9/x/chacha20poly1305/mod.ts";
154154

155155
async function doHpke() {
156156
// setup
@@ -195,11 +195,11 @@ try {
195195
<head></head>
196196
<body>
197197
<script type="module">
198-
// import * as hpke from "https://esm.sh/hpke-js@1.2.8";
198+
// import * as hpke from "https://esm.sh/hpke-js@1.2.9";
199199
import {
200200
CipherSuite, DhkemP256HkdfSha256, HkdfSha256,
201-
} from "https://esm.sh/@hpke/core@1.2.8";
202-
import { Chacha20Poly1305 } from "https://esm.sh/@hpke/chacha20poly1305@1.2.8";
201+
} from "https://esm.sh/@hpke/core@1.2.9";
202+
import { Chacha20Poly1305 } from "https://esm.sh/@hpke/chacha20poly1305@1.2.9";
203203
204204
globalThis.doHpke = async () => {
205205
try {

‎x/dhkem-secp256k1/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ Using deno.land:
4545

4646
```js
4747
// use a specific version
48-
import * as hpke from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
49-
import * as secp256k1 from "https://deno.land/x/hpke@1.2.8/x/dhkem-secp256k1/mod.ts";
48+
import * as hpke from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
49+
import * as secp256k1 from "https://deno.land/x/hpke@1.2.9/x/dhkem-secp256k1/mod.ts";
5050

5151
// use the latest stable version
5252
import * as hpke from "https://deno.land/x/hpke/core/mod.ts";
@@ -63,8 +63,8 @@ Using esm.sh:
6363
```html
6464
<!-- use a specific version -->
6565
<script type="module">
66-
import * as hpke from "https://esm.sh/@hpke/core@1.2.8";
67-
import * as secp256k1 from "https://esm.sh/@hpke/dhkem-secp256k1@1.2.8";
66+
import * as hpke from "https://esm.sh/@hpke/core@1.2.9";
67+
import * as secp256k1 from "https://esm.sh/@hpke/dhkem-secp256k1@1.2.9";
6868
// ...
6969
</script>
7070

@@ -81,8 +81,8 @@ Using unpkg:
8181
```html
8282
<!-- use a specific version -->
8383
<script type="module">
84-
import * as hpke from "https://unpkg.com/@hpke/core@1.2.8/esm/mod.js";
85-
import * as secp256k1 from "https://unpkg.com/@hpke/dhkem-secp256k1@1.2.8/esm/mod.js";
84+
import * as hpke from "https://unpkg.com/@hpke/core@1.2.9/esm/mod.js";
85+
import * as secp256k1 from "https://unpkg.com/@hpke/dhkem-secp256k1@1.2.9/esm/mod.js";
8686
// ...
8787
</script>
8888
```
@@ -147,8 +147,8 @@ try {
147147
### Deno
148148

149149
```js
150-
import { Aes256Gcm, CipherSuite, HkdfSha512 } from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
151-
import { DhkemSecp256k1HkdfSha256 } from "https://deno.land/x/hpke@1.2.8/x/dhkem-secp256k1/mod.ts";
150+
import { Aes256Gcm, CipherSuite, HkdfSha512 } from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
151+
import { DhkemSecp256k1HkdfSha256 } from "https://deno.land/x/hpke@1.2.9/x/dhkem-secp256k1/mod.ts";
152152

153153
async function doHpke() {
154154
// setup
@@ -193,8 +193,8 @@ try {
193193
<head></head>
194194
<body>
195195
<script type="module">
196-
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://esm.sh/@hpke/core@1.2.8";
197-
import { DhkemSecp256k1HkdfSha256 } from "https://esm.sh/@hpke/dhkem-secp256k1@1.2.8";
196+
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://esm.sh/@hpke/core@1.2.9";
197+
import { DhkemSecp256k1HkdfSha256 } from "https://esm.sh/@hpke/dhkem-secp256k1@1.2.9";
198198
199199
globalThis.doHpke = async () => {
200200
try {

‎x/dhkem-x25519/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ Using deno.land:
4545

4646
```js
4747
// use a specific version
48-
import * as hpke from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
49-
import * as x25519 from "https://deno.land/x/hpke@1.2.8/x/dhkem-x25519/mod.ts";
48+
import * as hpke from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
49+
import * as x25519 from "https://deno.land/x/hpke@1.2.9/x/dhkem-x25519/mod.ts";
5050

5151
// use the latest stable version
5252
import * as hpke from "https://deno.land/x/hpke/core/mod.ts";
@@ -63,8 +63,8 @@ Using esm.sh:
6363
```html
6464
<!-- use a specific version -->
6565
<script type="module">
66-
import * as hpke from "https://esm.sh/@hpke/core@1.2.8";
67-
import * as x25519 from "https://esm.sh/@hpke/dhkem-x25519@1.2.8";
66+
import * as hpke from "https://esm.sh/@hpke/core@1.2.9";
67+
import * as x25519 from "https://esm.sh/@hpke/dhkem-x25519@1.2.9";
6868
// ...
6969
</script>
7070

@@ -81,8 +81,8 @@ Using unpkg:
8181
```html
8282
<!-- use a specific version -->
8383
<script type="module">
84-
import * as hpke from "https://unpkg.com/@hpke/core@1.2.8/esm/mod.js";
85-
import * as x25519 from "https://unpkg.com/@hpke/dhkem-x25519@1.2.8/esm/mod.js";
84+
import * as hpke from "https://unpkg.com/@hpke/core@1.2.9/esm/mod.js";
85+
import * as x25519 from "https://unpkg.com/@hpke/dhkem-x25519@1.2.9/esm/mod.js";
8686
// ...
8787
</script>
8888
```
@@ -147,8 +147,8 @@ try {
147147
### Deno
148148

149149
```js
150-
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
151-
import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.8/x/dhkem-x25519/mod.ts";
150+
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
151+
import { DhkemX25519HkdfSha256 } from "https://deno.land/x/hpke@1.2.9/x/dhkem-x25519/mod.ts";
152152

153153
async function doHpke() {
154154
// setup
@@ -193,8 +193,8 @@ try {
193193
<head></head>
194194
<body>
195195
<script type="module">
196-
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://esm.sh/@hpke/core@1.2.8";
197-
import { DhkemX25519HkdfSha256 } from "https://esm.sh/@hpke/dhkem-x25519@1.2.8";
196+
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://esm.sh/@hpke/core@1.2.9";
197+
import { DhkemX25519HkdfSha256 } from "https://esm.sh/@hpke/dhkem-x25519@1.2.9";
198198
199199
globalThis.doHpke = async () => {
200200
try {

‎x/dhkem-x448/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ Using deno.land:
4545

4646
```js
4747
// use a specific version
48-
import * as hpke from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
49-
import * as x448 from "https://deno.land/x/hpke@1.2.8/x/dhkem-x448/mod.ts";
48+
import * as hpke from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
49+
import * as x448 from "https://deno.land/x/hpke@1.2.9/x/dhkem-x448/mod.ts";
5050

5151
// use the latest stable version
5252
import * as hpke from "https://deno.land/x/hpke/core/mod.ts";
@@ -63,8 +63,8 @@ Using esm.sh:
6363
```html
6464
<!-- use a specific version -->
6565
<script type="module">
66-
import * as hpke from "https://esm.sh/@hpke/core@1.2.8";
67-
import * as x448 from "https://esm.sh/@hpke/dhkem-x448@1.2.8";
66+
import * as hpke from "https://esm.sh/@hpke/core@1.2.9";
67+
import * as x448 from "https://esm.sh/@hpke/dhkem-x448@1.2.9";
6868
// ...
6969
</script>
7070

@@ -81,8 +81,8 @@ Using unpkg:
8181
```html
8282
<!-- use a specific version -->
8383
<script type="module">
84-
import * as hpke from "https://unpkg.com/@hpke/core@1.2.8/esm/mod.js";
85-
import * as x448 from "https://unpkg.com/@hpke/dhkem-x448@1.2.8/esm/mod.js";
84+
import * as hpke from "https://unpkg.com/@hpke/core@1.2.9/esm/mod.js";
85+
import * as x448 from "https://unpkg.com/@hpke/dhkem-x448@1.2.9/esm/mod.js";
8686
// ...
8787
</script>
8888
```
@@ -147,8 +147,8 @@ try {
147147
### Deno
148148

149149
```js
150-
import { KdfId, AeadId, CipherSuite } from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
151-
import { DhkemX448HkdfSha512 } from "https://deno.land/x/hpke@1.2.8/x/dhkem-x448/mod.ts";
150+
import { KdfId, AeadId, CipherSuite } from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
151+
import { DhkemX448HkdfSha512 } from "https://deno.land/x/hpke@1.2.9/x/dhkem-x448/mod.ts";
152152

153153
async function doHpke() {
154154
// setup
@@ -193,8 +193,8 @@ try {
193193
<head></head>
194194
<body>
195195
<script type="module">
196-
import { Aes256Gcm, CipherSuite, HkdfSha512 } from "https://esm.sh/@hpke/core@1.2.8";
197-
import { DhkemX448HkdfSha512 } from "https://esm.sh/@hpke/dhkem-x448@1.2.8";
196+
import { Aes256Gcm, CipherSuite, HkdfSha512 } from "https://esm.sh/@hpke/core@1.2.9";
197+
import { DhkemX448HkdfSha512 } from "https://esm.sh/@hpke/dhkem-x448@1.2.9";
198198
199199
globalThis.doHpke = async () => {
200200
try {

‎x/hybridkem-x25519-kyber768/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ Using deno.land:
4646

4747
```js
4848
// use a specific version
49-
import * as hpke from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
50-
import * as kyber from "https://deno.land/x/hpke@1.2.8/x/hybridkem-x25519-kyber768/mod.ts";
49+
import * as hpke from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
50+
import * as kyber from "https://deno.land/x/hpke@1.2.9/x/hybridkem-x25519-kyber768/mod.ts";
5151

5252
// use the latest stable version
5353
import * as hpke from "https://deno.land/x/hpke/core/mod.ts";
@@ -64,8 +64,8 @@ Using esm.sh:
6464
```html
6565
<!-- use a specific version -->
6666
<script type="module">
67-
import * as hpke from "https://esm.sh/@hpke/core@1.2.8";
68-
import * as kyber from "https://esm.sh/@hpke/hybridkem-x25519-kyber768@1.2.8";
67+
import * as hpke from "https://esm.sh/@hpke/core@1.2.9";
68+
import * as kyber from "https://esm.sh/@hpke/hybridkem-x25519-kyber768@1.2.9";
6969
// ...
7070
</script>
7171

@@ -82,8 +82,8 @@ Using unpkg:
8282
```html
8383
<!-- use a specific version -->
8484
<script type="module">
85-
import * as hpke from "https://unpkg.com/@hpke/core@1.2.8/esm/mod.js";
86-
import * as kyber from "https://unpkg.com/@hpke/hybridkem-x25519-kyber768@1.2.8/esm/mod.js";
85+
import * as hpke from "https://unpkg.com/@hpke/core@1.2.9/esm/mod.js";
86+
import * as kyber from "https://unpkg.com/@hpke/hybridkem-x25519-kyber768@1.2.9/esm/mod.js";
8787
// ...
8888
</script>
8989
```
@@ -148,8 +148,8 @@ try {
148148
### Deno
149149

150150
```js
151-
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://deno.land/x/hpke@1.2.8/core/mod.ts";
152-
import { HybridkemX25519Kyber768 } from "https://deno.land/x/hpke@1.2.8/x/hybridkem-x25519-kyber768/mod.ts";
151+
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://deno.land/x/hpke@1.2.9/core/mod.ts";
152+
import { HybridkemX25519Kyber768 } from "https://deno.land/x/hpke@1.2.9/x/hybridkem-x25519-kyber768/mod.ts";
153153

154154
async function doHpke() {
155155
// setup
@@ -194,8 +194,8 @@ try {
194194
<head></head>
195195
<body>
196196
<script type="module">
197-
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://esm.sh/@hpke/core@1.2.8";
198-
import { HybridkemX25519Kyber768 } from "https://esm.sh/@hpke/hybridkem-x25519-kyber768@1.2.8";
197+
import { Aes128Gcm, CipherSuite, HkdfSha256 } from "https://esm.sh/@hpke/core@1.2.9";
198+
import { HybridkemX25519Kyber768 } from "https://esm.sh/@hpke/hybridkem-x25519-kyber768@1.2.9";
199199
200200
globalThis.doHpke = async () => {
201201
try {

0 commit comments

Comments
 (0)
Please sign in to comment.