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.1 to 0.0.2

tsconfig.json

2

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

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

@@ -1,2 +0,2 @@

interface JWK {
export interface JWK {
kty: 'oct',

@@ -9,3 +9,3 @@ kid?: string,

interface Codec {
export interface Codec {
encrypt(value: any): Promise<string>,

@@ -12,0 +12,0 @@ decrypt(cipher: string): Promise<any>

@@ -41,2 +41,3 @@ const jose = require('node-jose')

jwe.default = jwe
module.exports = jwe
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