@adorsys/jwe-codec
Advanced tools
Comparing version 0.0.1-beta.1 to 0.0.2
{ | ||
"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 |
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
5739
9
173