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

@adorsys/jwe-codec

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adorsys/jwe-codec - npm Package Compare versions

Comparing version 0.0.1-beta.0 to 0.0.1-beta.1

2

package.json
{
"name": "@adorsys/jwe-codec",
"version": "0.0.1-beta.0",
"version": "0.0.1-beta.1",
"description": "Codec to encrypt any javascript value into a JsonWebEncryption (JWE)",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -10,6 +10,6 @@ interface JWK {

interface Codec {
encrypt: (any) => Promise<string>,
decrypt: (string) => Promise<any>
encrypt(value: any): Promise<string>,
decrypt(cipher: string): Promise<any>
}
export declare const jwe: () => Promise<Codec>
export default function jwe(key: JWK): Promise<Codec>
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