@extrimian/kms-suite-didcomm
Advanced tools
Comparing version 1.0.0 to 1.0.2
{ | ||
"name": "@extrimian/kms-suite-didcomm", | ||
"version": "1.0.0", | ||
"version": "1.0.2", | ||
"description": "", | ||
@@ -27,2 +27,3 @@ "main": "dist/index.js", | ||
"@types/libsodium-wrappers": "^0.7.9", | ||
"did-jwt": "^6.8.0", | ||
"jsonld": "^5.2.0", | ||
@@ -29,0 +30,0 @@ "libsodium": "^0.7.9", |
@@ -64,3 +64,3 @@ import { DIDComm } from "@hearro/didcomm"; | ||
return await didcomm.pack_auth_msg_for_recipients(documentToSign, toKey, key); | ||
return await didcomm.pack_auth_msg_for_recipients(documentToSign, toKey, key as any); | ||
@@ -78,3 +78,3 @@ } | ||
const unpackedMsg = await didcomm.unpackMessage(encryptedDocument, { | ||
keyType: this.keyPair.keyType, | ||
keyType: this.keyPair.keyType as any, | ||
privateKey: sodium.from_hex(this.keyPair.privateKey), | ||
@@ -81,0 +81,0 @@ publicKey: sodium.from_hex(this.keyPair.publicKey), |
Sorry, the diff of this file is not supported yet
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
14933
8
+ Addeddid-jwt@^6.8.0