@hpke/chacha20poly1305
Advanced tools
Comparing version 1.1.0 to 1.1.1
{ | ||
"module": "./esm/x/chacha20poly1305/mod.js", | ||
"main": "./script/x/chacha20poly1305/mod.js", | ||
"types": "./script/x/chacha20poly1305/mod.d.ts", | ||
"types": "./esm/x/chacha20poly1305/mod.d.ts", | ||
"name": "@hpke/chacha20poly1305", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A Hybrid Public Key Encryption (HPKE) module extension for ChaCha20/Poly1305", | ||
@@ -14,2 +14,3 @@ "repository": { | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"exports": { | ||
@@ -16,0 +17,0 @@ ".": { |
@@ -34,4 +34,4 @@ <h1 align="center">@hpke/chacha20poly1305</h1> | ||
<script type="module"> | ||
import * as hpke from "https://esm.sh/@hpke/core@1.1.0"; | ||
import * as chacha20 from "https://esm.sh/@hpke/chacha20poly1305@1.1.0"; | ||
import * as hpke from "https://esm.sh/@hpke/core@1.1.1"; | ||
import * as chacha20 from "https://esm.sh/@hpke/chacha20poly1305@1.1.1"; | ||
// ... | ||
@@ -53,4 +53,4 @@ </script> | ||
<script type="module"> | ||
import * as hpke from "https://unpkg.com/@hpke/core@1.1.0/esm/mod.js"; | ||
import * as chacha20 from "https://unpkg.com/@hpke/chacha20poly1305@1.1.0/esm/mod.js"; | ||
import * as hpke from "https://unpkg.com/@hpke/core@1.1.1/esm/mod.js"; | ||
import * as chacha20 from "https://unpkg.com/@hpke/chacha20poly1305@1.1.1/esm/mod.js"; | ||
// ... | ||
@@ -80,4 +80,4 @@ </script> | ||
// use a specific version | ||
import * as hpke from "https://deno.land/x/hpke@1.1.0/core/mod.ts"; | ||
import * as chacha20 from "https://deno.land/x/hpke@1.1.0/x/chacha20poly1305/mod.ts"; | ||
import * as hpke from "https://deno.land/x/hpke@1.1.1/core/mod.ts"; | ||
import * as chacha20 from "https://deno.land/x/hpke@1.1.1/x/chacha20poly1305/mod.ts"; | ||
@@ -110,5 +110,5 @@ // use the latest stable version | ||
<script type="module"> | ||
// import * as hpke from "https://esm.sh/hpke-js@1.1.0"; | ||
import { KemId, KdfId, CipherSuite } from "https://esm.sh/@hpke/core@1.1.0"; | ||
import { Chacha20Poly1305 } from "https://esm.sh/@hpke/chacha20poly1305@1.1.0"; | ||
// import * as hpke from "https://esm.sh/hpke-js@1.1.1"; | ||
import { KemId, KdfId, CipherSuite } from "https://esm.sh/@hpke/core@1.1.1"; | ||
import { Chacha20Poly1305 } from "https://esm.sh/@hpke/chacha20poly1305@1.1.1"; | ||
@@ -200,4 +200,4 @@ globalThis.doHpke = async () => { | ||
```js | ||
import { KemId, KdfId, CipherSuite } from "https://deno.land/x/hpke@1.1.0/core/mod.ts"; | ||
import { Chacha20Poly1305 } from "https://deno.land/x/hpke@1.1.0/x/chacha20poly1305/mod.ts"; | ||
import { KemId, KdfId, CipherSuite } from "https://deno.land/x/hpke@1.1.1/core/mod.ts"; | ||
import { Chacha20Poly1305 } from "https://deno.land/x/hpke@1.1.1/x/chacha20poly1305/mod.ts"; | ||
@@ -204,0 +204,0 @@ async function doHpke() { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31683