Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hpke/chacha20poly1305

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hpke/chacha20poly1305 - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

5

package.json
{
"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 @@ ".": {

22

README.md

@@ -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() {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc