-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #291 from dajiaji/bump-to-1_2_5
Bump version to 1.2.5.
- Loading branch information
Showing
13 changed files
with
163 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -219,9 +219,9 @@ Using deno.land: | |
|
||
```js | ||
// use a specific version | ||
import * as hpke from "https://deno.land/x/[email protected].4/mod.ts"; | ||
// import * as hpke from "https://deno.land/x/[email protected].4/core/mod.ts"; | ||
// import * as hpke from "https://deno.land/x/[email protected].4/x/dhkem-x25519/mod.ts"; | ||
import * as hpke from "https://deno.land/x/[email protected].5/mod.ts"; | ||
// import * as hpke from "https://deno.land/x/[email protected].5/core/mod.ts"; | ||
// import * as hpke from "https://deno.land/x/[email protected].5/x/dhkem-x25519/mod.ts"; | ||
|
||
// use the latest stable version | ||
import * as hpke from "https://deno.land/x/hpke/mod.ts"; | ||
|
@@ -239,8 +239,8 @@ Using esm.sh: | |
```html | ||
<!-- use a specific version --> | ||
<script type="module"> | ||
import * as hpke from "https://esm.sh/[email protected].4"; | ||
// import * as hpke from "https://esm.sh/@hpke/[email protected].4"; | ||
import * as hpke from "https://esm.sh/[email protected].5"; | ||
// import * as hpke from "https://esm.sh/@hpke/[email protected].5"; | ||
// ... | ||
</script> | ||
|
||
|
@@ -257,8 +257,8 @@ Using unpkg: | |
```html | ||
<!-- use a specific version --> | ||
<script type="module"> | ||
import * as hpke from "https://unpkg.com/[email protected].4/esm/mod.js"; | ||
// import * as hpke from "https://unpkg.com/@hpke/[email protected].4/esm/mod.js"; | ||
import * as hpke from "https://unpkg.com/[email protected].5/esm/mod.js"; | ||
// import * as hpke from "https://unpkg.com/@hpke/[email protected].5/esm/mod.js"; | ||
// ... | ||
</script> | ||
``` | ||
|
@@ -338,11 +338,11 @@ try { | |
Deno: | ||
|
||
```js | ||
import { AeadId, CipherSuite, KdfId, KemId } from "https://deno.land/x/[email protected].4/mod.ts"; | ||
import { AeadId, CipherSuite, KdfId, KemId } from "https://deno.land/x/[email protected].5/mod.ts"; | ||
// import { | ||
// Aes128Gcm, CipherSuite, HkdfSha256, | ||
// } from "https://deno.land/x/[email protected].4/core/mod.ts"; | ||
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/[email protected].4/x/dhkem-x25519/mod.ts"; | ||
// } from "https://deno.land/x/[email protected].5/core/mod.ts"; | ||
// import { DhkemX25519HkdfSha256 } from "https://deno.land/x/[email protected].5/x/dhkem-x25519/mod.ts"; | ||
|
||
async function doHpke() { | ||
// setup | ||
|
@@ -425,10 +425,10 @@ Browsers: | |
<head></head> | ||
<body> | ||
<script type="module"> | ||
import { AeadId, CipherSuite, KdfId, KemId } from "https://esm.sh/[email protected].4"; | ||
import { AeadId, CipherSuite, KdfId, KemId } from "https://esm.sh/[email protected].5"; | ||
// import { | ||
// Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256, | ||
// } from "@hpke/[email protected].4"; | ||
// } from "@hpke/[email protected].5"; | ||
globalThis.doHpke = async () => { | ||
try { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ Using deno.land: | |
|
||
```js | ||
// use a specific version | ||
import * as hpke from "https://deno.land/x/[email protected].4/core/mod.ts"; | ||
import * as hpke from "https://deno.land/x/[email protected].5/core/mod.ts"; | ||
|
||
// use the latest stable version | ||
import * as hpke from "https://deno.land/x/hpke/core/mod.ts"; | ||
|
@@ -60,7 +60,7 @@ Using esm.sh: | |
```html | ||
<!-- use a specific version --> | ||
<script type="module"> | ||
import * as hpke from "https://esm.sh/@hpke/[email protected].4"; | ||
import * as hpke from "https://esm.sh/@hpke/[email protected].5"; | ||
// ... | ||
</script> | ||
|
||
|
@@ -76,7 +76,7 @@ Using unpkg: | |
```html | ||
<!-- use a specific version --> | ||
<script type="module"> | ||
import * as hpke from "https://unpkg.com/@hpke/[email protected].4/esm/mod.js"; | ||
import * as hpke from "https://unpkg.com/@hpke/[email protected].5/esm/mod.js"; | ||
// ... | ||
</script> | ||
``` | ||
|
@@ -149,7 +149,7 @@ try { | |
```js | ||
import { | ||
Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256, | ||
} from "https://deno.land/x/[email protected].4/core/mod.ts"; | ||
} from "https://deno.land/x/[email protected].5/core/mod.ts"; | ||
|
||
async function doHpke() { | ||
// setup | ||
|
@@ -194,10 +194,10 @@ try { | |
<head></head> | ||
<body> | ||
<script type="module"> | ||
// import * as hpke from "https://esm.sh/[email protected].4"; | ||
// import * as hpke from "https://esm.sh/[email protected].5"; | ||
import { | ||
Aes128Gcm, CipherSuite, DhkemP256HkdfSha256, HkdfSha256, | ||
} from "https://esm.sh/@hpke/[email protected].4"; | ||
} from "https://esm.sh/@hpke/[email protected].5"; | ||
globalThis.doHpke = async () => { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.