@sphereon/ssi-sdk-ext.kms-local 0.23.1-unstable.50 → 0.23.1-unstable.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sphereon/ssi-sdk-ext.kms-local",
3
3
  "description": "Sphereon Local Key Management System with support for BLS/BBS+, RSA keys",
4
- "version": "0.23.1-unstable.50+75e8b3b",
4
+ "version": "0.23.1-unstable.58+9828ed6",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -10,9 +10,8 @@
10
10
  "generate-plugin-schema": "sphereon dev generate-plugin-schema"
11
11
  },
12
12
  "dependencies": {
13
- "@sphereon/isomorphic-webcrypto": "2.4.1-unstable.0",
14
- "@sphereon/ssi-sdk-ext.did-utils": "0.23.1-unstable.50+75e8b3b",
15
- "@sphereon/ssi-sdk-ext.key-utils": "0.23.1-unstable.50+75e8b3b",
13
+ "@sphereon/ssi-sdk-ext.did-utils": "0.23.1-unstable.58+9828ed6",
14
+ "@sphereon/ssi-sdk-ext.key-utils": "0.23.1-unstable.58+9828ed6",
16
15
  "@trust/keyto": "2.0.0-alpha1",
17
16
  "@veramo/core": "4.2.0",
18
17
  "@veramo/key-manager": "4.2.0",
@@ -44,5 +43,5 @@
44
43
  "kms",
45
44
  "Veramo"
46
45
  ],
47
- "gitHead": "75e8b3b258011320e8321b5d4d3f0cc04c42776a"
46
+ "gitHead": "9828ed65b9e3afe947e29fcf16c4d566f6fd5383"
48
47
  }
@@ -150,6 +150,7 @@ describe('RSA Signer', () => {
150
150
  })
151
151
  const signature = await signer.sign(u8a.fromString('test123', 'utf-8'))
152
152
  expect(signature).toBeDefined()
153
+
153
154
  const result = await signer.verify('test123', signature)
154
155
  expect(result).toBeTruthy()
155
156
  })