@sphereon/ssi-sdk-ext.kms-musap-rn 0.28.0 → 0.28.1-feature.esm.cjs.9

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/dist/index.cjs ADDED
@@ -0,0 +1,238 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; } var _class;var __defProp = Object.defineProperty;
2
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
+
4
+ // src/MusapKeyManagerSystem.ts
5
+ var _ssisdkextx509utils = require('@sphereon/ssi-sdk-ext.x509-utils');
6
+ var _musapreactnative = require('@sphereon/musap-react-native');
7
+ var _keymanager = require('@veramo/key-manager');
8
+ var _textencoding = require('text-encoding');
9
+ var _ssitypes = require('@sphereon/ssi-types');
10
+ var _ssisdkextkeyutils = require('@sphereon/ssi-sdk-ext.key-utils');
11
+ var _fromstring = require('uint8arrays/from-string');
12
+ var _tostring = require('uint8arrays/to-string');
13
+ var logger = _ssitypes.Loggers.DEFAULT.get("sphereon:musap-rn-kms");
14
+ var MusapKeyManagementSystem = (_class = class extends _keymanager.AbstractKeyManagementSystem {
15
+ static {
16
+ __name(this, "MusapKeyManagementSystem");
17
+ }
18
+
19
+
20
+
21
+
22
+
23
+ constructor(sscdType, sscdId, opts) {
24
+ super();_class.prototype.__init.call(this);_class.prototype.__init2.call(this);_class.prototype.__init3.call(this);;
25
+ try {
26
+ this.musapClient = _musapreactnative.MusapClient;
27
+ this.sscdType = sscdType ? sscdType : "TEE";
28
+ this.sscdId = _nullishCoalesce(sscdId, () => ( this.sscdType));
29
+ this.defaultKeyAttributes = _optionalChain([opts, 'optionalAccess', _ => _.defaultKeyAttributes]);
30
+ this.defaultSignAttributes = _optionalChain([opts, 'optionalAccess', _2 => _2.defaultSignAttributes]);
31
+ const enabledSscds = this.musapClient.listEnabledSscds();
32
+ if (!enabledSscds.some((value) => value.sscdId == sscdId)) {
33
+ this.musapClient.enableSscd(this.sscdType, this.sscdId, _optionalChain([opts, 'optionalAccess', _3 => _3.externalSscdSettings]));
34
+ }
35
+ } catch (e) {
36
+ console.error("enableSscd", e);
37
+ throw Error("enableSscd failed");
38
+ }
39
+ }
40
+ async listKeys() {
41
+ const keysJson = this.musapClient.listKeys();
42
+ return keysJson.map((key) => this.asMusapKeyInfo(key));
43
+ }
44
+ async createKey(args) {
45
+ const { type, meta } = args;
46
+ if (meta === void 0 || !("keyAlias" in meta)) {
47
+ return Promise.reject(Error("a unique keyAlias field is required for MUSAP"));
48
+ }
49
+ if (this.sscdType == "EXTERNAL") {
50
+ const existingKeys = this.musapClient.listKeys();
51
+ const extKey = existingKeys.find((musapKey) => musapKey.sscdType === "External Signature");
52
+ if (extKey) {
53
+ extKey.algorithm = "eccp256r1";
54
+ return this.asMusapKeyInfo(extKey);
55
+ }
56
+ return Promise.reject(Error(`No external key was bound yet for sscd ${this.sscdId}`));
57
+ }
58
+ const keyGenReq = {
59
+ keyAlgorithm: this.mapKeyTypeToAlgorithmType(type),
60
+ keyUsage: "keyUsage" in meta ? meta.keyUsage : "sign",
61
+ keyAlias: meta.keyAlias,
62
+ attributes: this.recordToKeyAttributes({
63
+ ...this.defaultKeyAttributes,
64
+ ..."attributes" in meta ? meta.attributes : {}
65
+ }),
66
+ role: "role" in meta ? meta.role : "administrator"
67
+ };
68
+ try {
69
+ const generatedKeyUri = await this.musapClient.generateKey(this.sscdType, keyGenReq);
70
+ if (generatedKeyUri) {
71
+ logger.debug("Generated key:", generatedKeyUri);
72
+ const key = this.musapClient.getKeyByUri(generatedKeyUri);
73
+ return this.asMusapKeyInfo(key);
74
+ } else {
75
+ return Promise.reject(new Error("Failed to generate key. No key URI"));
76
+ }
77
+ } catch (error) {
78
+ logger.error("An error occurred:", error);
79
+ throw error;
80
+ }
81
+ }
82
+ __init() {this.mapKeyTypeToAlgorithmType = /* @__PURE__ */ __name((type) => {
83
+ switch (type) {
84
+ case "Secp256k1":
85
+ return "ECCP256K1";
86
+ case "Secp256r1":
87
+ return "ECCP256R1";
88
+ case "RSA":
89
+ return "RSA2K";
90
+ default:
91
+ throw new Error(`Key type ${type} is not supported by MUSAP`);
92
+ }
93
+ }, "mapKeyTypeToAlgorithmType")}
94
+ __init2() {this.mapAlgorithmTypeToKeyType = /* @__PURE__ */ __name((type) => {
95
+ switch (type) {
96
+ case "eccp256k1":
97
+ return "Secp256k1";
98
+ case "eccp256r1":
99
+ return "Secp256r1";
100
+ case "ecc_ed25519":
101
+ return "Ed25519";
102
+ case "rsa2k":
103
+ case "rsa4k":
104
+ return "RSA";
105
+ default:
106
+ throw new Error(`Key type ${type} is not supported.`);
107
+ }
108
+ }, "mapAlgorithmTypeToKeyType")}
109
+ async deleteKey({ kid }) {
110
+ try {
111
+ const key = this.musapClient.getKeyById(kid);
112
+ if (key.sscdType === "External Signature") {
113
+ return true;
114
+ }
115
+ void this.musapClient.removeKey(kid);
116
+ return true;
117
+ } catch (error) {
118
+ console.warn("Failed to delete key:", error);
119
+ return false;
120
+ }
121
+ }
122
+ determineAlgorithm(providedAlgorithm, keyAlgorithm) {
123
+ if (providedAlgorithm === void 0) {
124
+ return _musapreactnative.signatureAlgorithmFromKeyAlgorithm.call(void 0, keyAlgorithm);
125
+ }
126
+ if (_musapreactnative.isSignatureAlgorithmType.call(void 0, providedAlgorithm)) {
127
+ return providedAlgorithm;
128
+ }
129
+ return _musapreactnative.signatureAlgorithmFromKeyAlgorithm.call(void 0, providedAlgorithm);
130
+ }
131
+ async sign(args) {
132
+ if (!args.keyRef) {
133
+ throw new Error("key_not_found: No key ref provided");
134
+ }
135
+ const data = new (0, _textencoding.TextDecoder)().decode(args.data);
136
+ const key = this.musapClient.getKeyById(args.keyRef.kid);
137
+ if (key.sscdType === "External Signature") {
138
+ key.algorithm = "eccp256r1";
139
+ }
140
+ const signatureReq = {
141
+ keyUri: key.keyUri,
142
+ data,
143
+ algorithm: this.determineAlgorithm(args.algorithm, key.algorithm),
144
+ displayText: args.displayText,
145
+ transId: args.transId,
146
+ format: _nullishCoalesce(args.format, () => ( "RAW")),
147
+ attributes: this.recordToSignatureAttributes({
148
+ ...this.defaultSignAttributes,
149
+ ...args.attributes
150
+ })
151
+ };
152
+ return this.musapClient.sign(signatureReq);
153
+ }
154
+ async importKey(args) {
155
+ throw new Error("importKey is not implemented for MusapKeyManagementSystem.");
156
+ }
157
+ __init3() {this.decodeMusapPublicKey = /* @__PURE__ */ __name((args) => {
158
+ const { publicKey, keyType } = args;
159
+ const pemBinary = _ssisdkextx509utils.PEMToBinary.call(void 0, publicKey.pem);
160
+ const pemString = _tostring.toString.call(void 0, pemBinary, "utf8");
161
+ const isDoubleEncoded = pemBinary.length > 0 && typeof pemString === "string" && pemString.startsWith("MF");
162
+ if (isDoubleEncoded) {
163
+ const actualDerBytes = _fromstring.fromString.call(void 0, pemString, "base64");
164
+ const keyDataStart = 24;
165
+ const keyData = actualDerBytes.slice(keyDataStart);
166
+ let publicKeyHex = _tostring.toString.call(void 0, keyData, "hex");
167
+ if (publicKeyHex.length <= 128 && !publicKeyHex.startsWith("04")) {
168
+ publicKeyHex = "04" + publicKeyHex;
169
+ }
170
+ while (publicKeyHex.startsWith("04") && publicKeyHex.length < 130) {
171
+ publicKeyHex = publicKeyHex + "0";
172
+ }
173
+ if (publicKeyHex.startsWith("04") && publicKeyHex.length === 130) {
174
+ const xCoord = _fromstring.fromString.call(void 0, publicKeyHex.slice(2, 66), "hex");
175
+ const yCoord = _fromstring.fromString.call(void 0, publicKeyHex.slice(66, 130), "hex");
176
+ const prefix = new Uint8Array([
177
+ yCoord[31] % 2 === 0 ? 2 : 3
178
+ ]);
179
+ const compressedKey = new Uint8Array(33);
180
+ compressedKey.set(prefix, 0);
181
+ compressedKey.set(xCoord, 1);
182
+ return _tostring.toString.call(void 0, compressedKey, "hex");
183
+ }
184
+ return publicKeyHex;
185
+ }
186
+ const publicKeyBinary = _ssisdkextkeyutils.isAsn1Der.call(void 0, pemBinary) ? _ssisdkextkeyutils.asn1DerToRawPublicKey.call(void 0, pemBinary, keyType) : pemBinary;
187
+ return _ssisdkextkeyutils.isRawCompressedPublicKey.call(void 0, publicKeyBinary) ? _ssisdkextkeyutils.hexStringFromUint8Array.call(void 0, publicKeyBinary) : _ssisdkextkeyutils.toRawCompressedHexPublicKey.call(void 0, publicKeyBinary, keyType);
188
+ }, "decodeMusapPublicKey")}
189
+ asMusapKeyInfo(args) {
190
+ const { keyId, publicKey, ...metadata } = {
191
+ ...args
192
+ };
193
+ const keyType = this.mapAlgorithmTypeToKeyType(args.algorithm);
194
+ const publicKeyHex = this.decodeMusapPublicKey({
195
+ publicKey,
196
+ keyType
197
+ });
198
+ const keyInfo = {
199
+ kid: keyId,
200
+ type: keyType,
201
+ publicKeyHex,
202
+ meta: metadata
203
+ };
204
+ const jwkThumbprint = _ssisdkextkeyutils.calculateJwkThumbprintForKey.call(void 0, {
205
+ key: keyInfo
206
+ });
207
+ keyInfo.meta = {
208
+ ...keyInfo.meta,
209
+ jwkThumbprint
210
+ };
211
+ return keyInfo;
212
+ }
213
+ sharedSecret(args) {
214
+ throw new Error("Not supported.");
215
+ }
216
+ recordToKeyAttributes(record) {
217
+ if (!record) {
218
+ return [];
219
+ }
220
+ return Object.entries(record).map(([key, value]) => ({
221
+ name: key,
222
+ value
223
+ }));
224
+ }
225
+ recordToSignatureAttributes(record) {
226
+ if (!record) {
227
+ return [];
228
+ }
229
+ return Object.entries(record).map(([key, value]) => ({
230
+ name: key,
231
+ value
232
+ }));
233
+ }
234
+ }, _class);
235
+
236
+
237
+ exports.MusapKeyManagementSystem = MusapKeyManagementSystem;
238
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["/home/runner/work/SSI-SDK-crypto-extensions/SSI-SDK-crypto-extensions/packages/kms-musap-rn/dist/index.cjs","../src/MusapKeyManagerSystem.ts"],"names":["logger","Loggers","DEFAULT","get","MusapKeyManagementSystem","AbstractKeyManagementSystem","musapClient","sscdType","sscdId","defaultKeyAttributes","defaultSignAttributes","constructor","opts","MusapClient","enabledSscds","listEnabledSscds","some","value","enableSscd","externalSscdSettings","e","console","error","Error","listKeys","keysJson","map","key","asMusapKeyInfo","createKey","args","type","meta","undefined","Promise","reject","existingKeys","extKey","find","musapKey","algorithm","keyAlias","keyGenReq","generatedKeyUri","kid","keyAlgorithm","providedAlgorithm","keyUri","data","displayText","transId","attributes","signatureReq","pemString","keyDataStart","publicKeyHex","keyType","publicKeyBinary","publicKey","keyId","metadata","keyInfo","jwkThumbprint"],"mappings":"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","file":"/home/runner/work/SSI-SDK-crypto-extensions/SSI-SDK-crypto-extensions/packages/kms-musap-rn/dist/index.cjs","sourcesContent":[null,"import { PEMToBinary } from '@sphereon/ssi-sdk-ext.x509-utils'\nimport { IKey, ManagedKeyInfo, MinimalImportableKey, TKeyType } from '@veramo/core'\nimport {\n ExternalSscdSettings,\n IMusapClient,\n isSignatureAlgorithmType,\n JWSAlgorithm,\n KeyAlgorithm,\n KeyAlgorithmType,\n KeyAttribute,\n KeyGenReq,\n MusapClient,\n MusapKey,\n signatureAlgorithmFromKeyAlgorithm,\n SignatureAlgorithmType,\n SignatureAttribute,\n SignatureFormat,\n SignatureReq,\n SscdType,\n} from '@sphereon/musap-react-native'\nimport { AbstractKeyManagementSystem } from '@veramo/key-manager'\nimport { TextDecoder } from 'text-encoding'\nimport { Loggers } from '@sphereon/ssi-types'\nimport { KeyMetadata } from './index'\nimport {\n asn1DerToRawPublicKey,\n calculateJwkThumbprintForKey,\n hexStringFromUint8Array,\n isAsn1Der,\n isRawCompressedPublicKey,\n toRawCompressedHexPublicKey,\n} from '@sphereon/ssi-sdk-ext.key-utils'\n// @ts-ignore\nimport { fromString } from 'uint8arrays/from-string'\n// @ts-ignore\nimport { toString } from 'uint8arrays/to-string'\n\nexport const logger = Loggers.DEFAULT.get('sphereon:musap-rn-kms')\n\nexport class MusapKeyManagementSystem extends AbstractKeyManagementSystem {\n private musapClient: IMusapClient\n private readonly sscdType: SscdType\n private readonly sscdId: string\n private readonly defaultKeyAttributes: Record<string, string> | undefined\n private readonly defaultSignAttributes: Record<string, string> | undefined\n\n constructor(\n sscdType?: SscdType,\n sscdId?: string,\n opts?: {\n externalSscdSettings?: ExternalSscdSettings\n defaultKeyAttributes?: Record<string, string>\n defaultSignAttributes?: Record<string, string>\n }\n ) {\n super()\n try {\n this.musapClient = MusapClient\n this.sscdType = sscdType ? sscdType : 'TEE'\n this.sscdId = sscdId ?? this.sscdType\n this.defaultKeyAttributes = opts?.defaultKeyAttributes\n this.defaultSignAttributes = opts?.defaultSignAttributes\n\n const enabledSscds = this.musapClient.listEnabledSscds()\n if (!enabledSscds.some((value) => value.sscdId == sscdId)) {\n this.musapClient.enableSscd(this.sscdType, this.sscdId, opts?.externalSscdSettings)\n }\n } catch (e) {\n console.error('enableSscd', e)\n throw Error('enableSscd failed')\n }\n }\n\n async listKeys(): Promise<ManagedKeyInfo[]> {\n const keysJson: MusapKey[] = this.musapClient.listKeys() as MusapKey[]\n return keysJson.map((key) => this.asMusapKeyInfo(key))\n }\n\n async createKey(args: { type: TKeyType; meta?: KeyMetadata }): Promise<ManagedKeyInfo> {\n const { type, meta } = args\n if (meta === undefined || !('keyAlias' in meta)) {\n return Promise.reject(Error('a unique keyAlias field is required for MUSAP'))\n }\n\n if (this.sscdType == 'EXTERNAL') {\n const existingKeys: MusapKey[] = this.musapClient.listKeys() as MusapKey[]\n const extKey = existingKeys.find((musapKey) => (musapKey.sscdType as string) === 'External Signature') // FIXME returning does not match SscdType enum\n if (extKey) {\n extKey.algorithm = 'eccp256r1' // FIXME MUSAP announces key as rsa2k, but it's actually EC\n return this.asMusapKeyInfo(extKey)\n }\n return Promise.reject(Error(`No external key was bound yet for sscd ${this.sscdId}`))\n }\n\n const keyGenReq = {\n keyAlgorithm: this.mapKeyTypeToAlgorithmType(type),\n keyUsage: 'keyUsage' in meta ? (meta.keyUsage as string) : 'sign',\n keyAlias: meta.keyAlias as string,\n attributes: this.recordToKeyAttributes({ ...this.defaultKeyAttributes, ...('attributes' in meta ? meta.attributes : {}) }),\n role: 'role' in meta ? (meta.role as string) : 'administrator',\n } satisfies KeyGenReq\n\n try {\n const generatedKeyUri = await this.musapClient.generateKey(this.sscdType, keyGenReq)\n if (generatedKeyUri) {\n logger.debug('Generated key:', generatedKeyUri)\n const key = this.musapClient.getKeyByUri(generatedKeyUri)\n return this.asMusapKeyInfo(key)\n } else {\n return Promise.reject(new Error('Failed to generate key. No key URI'))\n }\n } catch (error) {\n logger.error('An error occurred:', error)\n throw error\n }\n }\n\n private mapKeyTypeToAlgorithmType = (type: TKeyType): KeyAlgorithmType => {\n switch (type) {\n case 'Secp256k1':\n return 'ECCP256K1'\n case 'Secp256r1':\n return 'ECCP256R1'\n case 'RSA':\n return 'RSA2K'\n default:\n throw new Error(`Key type ${type} is not supported by MUSAP`)\n }\n }\n\n private mapAlgorithmTypeToKeyType = (type: KeyAlgorithm): TKeyType => {\n switch (type) {\n case 'eccp256k1':\n return 'Secp256k1'\n case 'eccp256r1':\n return 'Secp256r1'\n case 'ecc_ed25519':\n return 'Ed25519'\n case 'rsa2k':\n case 'rsa4k':\n return 'RSA'\n default:\n throw new Error(`Key type ${type} is not supported.`)\n }\n }\n\n async deleteKey({ kid }: { kid: string }): Promise<boolean> {\n try {\n const key: MusapKey = this.musapClient.getKeyById(kid) as MusapKey\n if ((key.sscdType as string) === 'External Signature') {\n return true // FIXME we can't remove a eSim key for now because this would mean onboarding again\n }\n void this.musapClient.removeKey(kid)\n return true\n } catch (error) {\n console.warn('Failed to delete key:', error)\n return false\n }\n }\n\n private determineAlgorithm(providedAlgorithm: string | undefined, keyAlgorithm: KeyAlgorithm): SignatureAlgorithmType {\n if (providedAlgorithm === undefined) {\n return signatureAlgorithmFromKeyAlgorithm(keyAlgorithm)\n }\n\n if (isSignatureAlgorithmType(providedAlgorithm)) {\n return providedAlgorithm\n }\n\n // Veramo translates TKeyType to JWSAlgorithm\n return signatureAlgorithmFromKeyAlgorithm(providedAlgorithm as JWSAlgorithm)\n }\n\n async sign(args: { keyRef: Pick<IKey, 'kid'>; algorithm?: string; data: Uint8Array; [x: string]: any }): Promise<string> {\n if (!args.keyRef) {\n throw new Error('key_not_found: No key ref provided')\n }\n\n const data = new TextDecoder().decode(args.data as Uint8Array)\n\n const key: MusapKey = this.musapClient.getKeyById(args.keyRef.kid) as MusapKey\n if ((key.sscdType as string) === 'External Signature') {\n key.algorithm = 'eccp256r1' // FIXME MUSAP announces key as rsa2k, but it's actually EC\n }\n const signatureReq: SignatureReq = {\n keyUri: key.keyUri,\n data,\n algorithm: this.determineAlgorithm(args.algorithm, key.algorithm),\n displayText: args.displayText,\n transId: args.transId,\n format: (args.format as SignatureFormat) ?? 'RAW',\n attributes: this.recordToSignatureAttributes({ ...this.defaultSignAttributes, ...args.attributes }),\n }\n return this.musapClient.sign(signatureReq)\n }\n\n async importKey(args: Omit<MinimalImportableKey, 'kms'> & { privateKeyPEM?: string }): Promise<ManagedKeyInfo> {\n throw new Error('importKey is not implemented for MusapKeyManagementSystem.')\n }\n\n private decodeMusapPublicKey = (args: { publicKey: { pem: string }; keyType: TKeyType }): string => {\n const { publicKey, keyType } = args\n\n // First try the normal PEM decoding path\n const pemBinary = PEMToBinary(publicKey.pem)\n\n // Check if we got a string that looks like base64 (might be double encoded)\n // Convert Uint8Array to string safely\n const pemString = toString(pemBinary, 'utf8')\n const isDoubleEncoded = pemBinary.length > 0 && typeof pemString === 'string' && pemString.startsWith('MF')\n\n if (isDoubleEncoded) {\n // Handle double-encoded case\n const actualDerBytes = fromString(pemString, 'base64')\n\n // For double-encoded case, we know the key data starts after the header\n const keyDataStart = 24\n const keyData = actualDerBytes.slice(keyDataStart)\n\n // Convert to public key hex\n let publicKeyHex = toString(keyData, 'hex')\n\n // If it's not compressed yet and doesn't start with 0x04 (uncompressed point marker), add it\n if (publicKeyHex.length <= 128 && !publicKeyHex.startsWith('04')) {\n publicKeyHex = '04' + publicKeyHex\n }\n\n // Ensure we have full 65 bytes for uncompressed keys\n while (publicKeyHex.startsWith('04') && publicKeyHex.length < 130) {\n publicKeyHex = publicKeyHex + '0'\n }\n\n // Now convert to compressed format if needed\n if (publicKeyHex.startsWith('04') && publicKeyHex.length === 130) {\n const xCoord = fromString(publicKeyHex.slice(2, 66), 'hex')\n const yCoord = fromString(publicKeyHex.slice(66, 130), 'hex')\n const prefix = new Uint8Array([yCoord[31] % 2 === 0 ? 0x02 : 0x03])\n const compressedKey = new Uint8Array(33) // 1 byte prefix + 32 bytes x coordinate\n compressedKey.set(prefix, 0)\n compressedKey.set(xCoord, 1)\n return toString(compressedKey, 'hex')\n }\n\n return publicKeyHex\n }\n\n // Not double encoded, proceed with normal path\n const publicKeyBinary = isAsn1Der(pemBinary) ? asn1DerToRawPublicKey(pemBinary, keyType) : pemBinary\n return isRawCompressedPublicKey(publicKeyBinary)\n ? hexStringFromUint8Array(publicKeyBinary)\n : toRawCompressedHexPublicKey(publicKeyBinary, keyType)\n }\n\n private asMusapKeyInfo(args: MusapKey): ManagedKeyInfo {\n const { keyId, publicKey, ...metadata }: KeyMetadata = { ...args }\n const keyType = this.mapAlgorithmTypeToKeyType(args.algorithm)\n\n const publicKeyHex = this.decodeMusapPublicKey({\n publicKey: publicKey,\n keyType: keyType,\n })\n\n const keyInfo: Partial<ManagedKeyInfo> = {\n kid: keyId,\n type: keyType,\n publicKeyHex,\n meta: metadata,\n }\n\n const jwkThumbprint = calculateJwkThumbprintForKey({ key: keyInfo as ManagedKeyInfo })\n keyInfo.meta = { ...keyInfo.meta, jwkThumbprint }\n return keyInfo as ManagedKeyInfo\n }\n\n sharedSecret(args: { myKeyRef: Pick<IKey, 'kid'>; theirKey: Pick<IKey, 'publicKeyHex' | 'type'> }): Promise<string> {\n throw new Error('Not supported.')\n }\n\n private recordToKeyAttributes(record?: Record<string, string>): KeyAttribute[] {\n if (!record) {\n return []\n }\n return Object.entries(record).map(([key, value]) => ({\n name: key,\n value,\n }))\n }\n\n private recordToSignatureAttributes(record?: Record<string, string>): SignatureAttribute[] {\n if (!record) {\n return []\n }\n return Object.entries(record).map(([key, value]) => ({\n name: key,\n value,\n }))\n }\n}\n"]}
@@ -1,9 +1,8 @@
1
- import { IKey, ManagedKeyInfo, MinimalImportableKey, TKeyType } from '@veramo/core';
2
- import { ExternalSscdSettings, SscdType } from '@sphereon/musap-react-native';
1
+ import { ManagedKeyInfo, TKeyType, IKey, MinimalImportableKey } from '@veramo/core';
2
+ import { SscdType, ExternalSscdSettings } from '@sphereon/musap-react-native';
3
3
  import { AbstractKeyManagementSystem } from '@veramo/key-manager';
4
- import { KeyMetadata } from './index';
5
- export declare const logger: import("@sphereon/ssi-types").ISimpleLogger<unknown>;
6
- export declare class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
4
+
5
+ declare class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
7
6
  private musapClient;
8
7
  private readonly sscdType;
9
8
  private readonly sscdId;
@@ -43,4 +42,10 @@ export declare class MusapKeyManagementSystem extends AbstractKeyManagementSyste
43
42
  private recordToKeyAttributes;
44
43
  private recordToSignatureAttributes;
45
44
  }
46
- //# sourceMappingURL=MusapKeyManagerSystem.d.ts.map
45
+
46
+ interface KeyMetadata {
47
+ algorithms?: string[];
48
+ [x: string]: any;
49
+ }
50
+
51
+ export { type KeyMetadata, MusapKeyManagementSystem };
package/dist/index.d.ts CHANGED
@@ -1,6 +1,51 @@
1
- export { MusapKeyManagementSystem } from './MusapKeyManagerSystem';
2
- export interface KeyMetadata {
1
+ import { ManagedKeyInfo, TKeyType, IKey, MinimalImportableKey } from '@veramo/core';
2
+ import { SscdType, ExternalSscdSettings } from '@sphereon/musap-react-native';
3
+ import { AbstractKeyManagementSystem } from '@veramo/key-manager';
4
+
5
+ declare class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
6
+ private musapClient;
7
+ private readonly sscdType;
8
+ private readonly sscdId;
9
+ private readonly defaultKeyAttributes;
10
+ private readonly defaultSignAttributes;
11
+ constructor(sscdType?: SscdType, sscdId?: string, opts?: {
12
+ externalSscdSettings?: ExternalSscdSettings;
13
+ defaultKeyAttributes?: Record<string, string>;
14
+ defaultSignAttributes?: Record<string, string>;
15
+ });
16
+ listKeys(): Promise<ManagedKeyInfo[]>;
17
+ createKey(args: {
18
+ type: TKeyType;
19
+ meta?: KeyMetadata;
20
+ }): Promise<ManagedKeyInfo>;
21
+ private mapKeyTypeToAlgorithmType;
22
+ private mapAlgorithmTypeToKeyType;
23
+ deleteKey({ kid }: {
24
+ kid: string;
25
+ }): Promise<boolean>;
26
+ private determineAlgorithm;
27
+ sign(args: {
28
+ keyRef: Pick<IKey, 'kid'>;
29
+ algorithm?: string;
30
+ data: Uint8Array;
31
+ [x: string]: any;
32
+ }): Promise<string>;
33
+ importKey(args: Omit<MinimalImportableKey, 'kms'> & {
34
+ privateKeyPEM?: string;
35
+ }): Promise<ManagedKeyInfo>;
36
+ private decodeMusapPublicKey;
37
+ private asMusapKeyInfo;
38
+ sharedSecret(args: {
39
+ myKeyRef: Pick<IKey, 'kid'>;
40
+ theirKey: Pick<IKey, 'publicKeyHex' | 'type'>;
41
+ }): Promise<string>;
42
+ private recordToKeyAttributes;
43
+ private recordToSignatureAttributes;
44
+ }
45
+
46
+ interface KeyMetadata {
3
47
  algorithms?: string[];
4
48
  [x: string]: any;
5
49
  }
6
- //# sourceMappingURL=index.d.ts.map
50
+
51
+ export { type KeyMetadata, MusapKeyManagementSystem };
package/dist/index.js CHANGED
@@ -1,6 +1,238 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MusapKeyManagementSystem = void 0;
4
- var MusapKeyManagerSystem_1 = require("./MusapKeyManagerSystem");
5
- Object.defineProperty(exports, "MusapKeyManagementSystem", { enumerable: true, get: function () { return MusapKeyManagerSystem_1.MusapKeyManagementSystem; } });
1
+ var __defProp = Object.defineProperty;
2
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
+
4
+ // src/MusapKeyManagerSystem.ts
5
+ import { PEMToBinary } from "@sphereon/ssi-sdk-ext.x509-utils";
6
+ import { isSignatureAlgorithmType, MusapClient, signatureAlgorithmFromKeyAlgorithm } from "@sphereon/musap-react-native";
7
+ import { AbstractKeyManagementSystem } from "@veramo/key-manager";
8
+ import { TextDecoder } from "text-encoding";
9
+ import { Loggers } from "@sphereon/ssi-types";
10
+ import { asn1DerToRawPublicKey, calculateJwkThumbprintForKey, hexStringFromUint8Array, isAsn1Der, isRawCompressedPublicKey, toRawCompressedHexPublicKey } from "@sphereon/ssi-sdk-ext.key-utils";
11
+ import { fromString } from "uint8arrays/from-string";
12
+ import { toString } from "uint8arrays/to-string";
13
+ var logger = Loggers.DEFAULT.get("sphereon:musap-rn-kms");
14
+ var MusapKeyManagementSystem = class extends AbstractKeyManagementSystem {
15
+ static {
16
+ __name(this, "MusapKeyManagementSystem");
17
+ }
18
+ musapClient;
19
+ sscdType;
20
+ sscdId;
21
+ defaultKeyAttributes;
22
+ defaultSignAttributes;
23
+ constructor(sscdType, sscdId, opts) {
24
+ super();
25
+ try {
26
+ this.musapClient = MusapClient;
27
+ this.sscdType = sscdType ? sscdType : "TEE";
28
+ this.sscdId = sscdId ?? this.sscdType;
29
+ this.defaultKeyAttributes = opts?.defaultKeyAttributes;
30
+ this.defaultSignAttributes = opts?.defaultSignAttributes;
31
+ const enabledSscds = this.musapClient.listEnabledSscds();
32
+ if (!enabledSscds.some((value) => value.sscdId == sscdId)) {
33
+ this.musapClient.enableSscd(this.sscdType, this.sscdId, opts?.externalSscdSettings);
34
+ }
35
+ } catch (e) {
36
+ console.error("enableSscd", e);
37
+ throw Error("enableSscd failed");
38
+ }
39
+ }
40
+ async listKeys() {
41
+ const keysJson = this.musapClient.listKeys();
42
+ return keysJson.map((key) => this.asMusapKeyInfo(key));
43
+ }
44
+ async createKey(args) {
45
+ const { type, meta } = args;
46
+ if (meta === void 0 || !("keyAlias" in meta)) {
47
+ return Promise.reject(Error("a unique keyAlias field is required for MUSAP"));
48
+ }
49
+ if (this.sscdType == "EXTERNAL") {
50
+ const existingKeys = this.musapClient.listKeys();
51
+ const extKey = existingKeys.find((musapKey) => musapKey.sscdType === "External Signature");
52
+ if (extKey) {
53
+ extKey.algorithm = "eccp256r1";
54
+ return this.asMusapKeyInfo(extKey);
55
+ }
56
+ return Promise.reject(Error(`No external key was bound yet for sscd ${this.sscdId}`));
57
+ }
58
+ const keyGenReq = {
59
+ keyAlgorithm: this.mapKeyTypeToAlgorithmType(type),
60
+ keyUsage: "keyUsage" in meta ? meta.keyUsage : "sign",
61
+ keyAlias: meta.keyAlias,
62
+ attributes: this.recordToKeyAttributes({
63
+ ...this.defaultKeyAttributes,
64
+ ..."attributes" in meta ? meta.attributes : {}
65
+ }),
66
+ role: "role" in meta ? meta.role : "administrator"
67
+ };
68
+ try {
69
+ const generatedKeyUri = await this.musapClient.generateKey(this.sscdType, keyGenReq);
70
+ if (generatedKeyUri) {
71
+ logger.debug("Generated key:", generatedKeyUri);
72
+ const key = this.musapClient.getKeyByUri(generatedKeyUri);
73
+ return this.asMusapKeyInfo(key);
74
+ } else {
75
+ return Promise.reject(new Error("Failed to generate key. No key URI"));
76
+ }
77
+ } catch (error) {
78
+ logger.error("An error occurred:", error);
79
+ throw error;
80
+ }
81
+ }
82
+ mapKeyTypeToAlgorithmType = /* @__PURE__ */ __name((type) => {
83
+ switch (type) {
84
+ case "Secp256k1":
85
+ return "ECCP256K1";
86
+ case "Secp256r1":
87
+ return "ECCP256R1";
88
+ case "RSA":
89
+ return "RSA2K";
90
+ default:
91
+ throw new Error(`Key type ${type} is not supported by MUSAP`);
92
+ }
93
+ }, "mapKeyTypeToAlgorithmType");
94
+ mapAlgorithmTypeToKeyType = /* @__PURE__ */ __name((type) => {
95
+ switch (type) {
96
+ case "eccp256k1":
97
+ return "Secp256k1";
98
+ case "eccp256r1":
99
+ return "Secp256r1";
100
+ case "ecc_ed25519":
101
+ return "Ed25519";
102
+ case "rsa2k":
103
+ case "rsa4k":
104
+ return "RSA";
105
+ default:
106
+ throw new Error(`Key type ${type} is not supported.`);
107
+ }
108
+ }, "mapAlgorithmTypeToKeyType");
109
+ async deleteKey({ kid }) {
110
+ try {
111
+ const key = this.musapClient.getKeyById(kid);
112
+ if (key.sscdType === "External Signature") {
113
+ return true;
114
+ }
115
+ void this.musapClient.removeKey(kid);
116
+ return true;
117
+ } catch (error) {
118
+ console.warn("Failed to delete key:", error);
119
+ return false;
120
+ }
121
+ }
122
+ determineAlgorithm(providedAlgorithm, keyAlgorithm) {
123
+ if (providedAlgorithm === void 0) {
124
+ return signatureAlgorithmFromKeyAlgorithm(keyAlgorithm);
125
+ }
126
+ if (isSignatureAlgorithmType(providedAlgorithm)) {
127
+ return providedAlgorithm;
128
+ }
129
+ return signatureAlgorithmFromKeyAlgorithm(providedAlgorithm);
130
+ }
131
+ async sign(args) {
132
+ if (!args.keyRef) {
133
+ throw new Error("key_not_found: No key ref provided");
134
+ }
135
+ const data = new TextDecoder().decode(args.data);
136
+ const key = this.musapClient.getKeyById(args.keyRef.kid);
137
+ if (key.sscdType === "External Signature") {
138
+ key.algorithm = "eccp256r1";
139
+ }
140
+ const signatureReq = {
141
+ keyUri: key.keyUri,
142
+ data,
143
+ algorithm: this.determineAlgorithm(args.algorithm, key.algorithm),
144
+ displayText: args.displayText,
145
+ transId: args.transId,
146
+ format: args.format ?? "RAW",
147
+ attributes: this.recordToSignatureAttributes({
148
+ ...this.defaultSignAttributes,
149
+ ...args.attributes
150
+ })
151
+ };
152
+ return this.musapClient.sign(signatureReq);
153
+ }
154
+ async importKey(args) {
155
+ throw new Error("importKey is not implemented for MusapKeyManagementSystem.");
156
+ }
157
+ decodeMusapPublicKey = /* @__PURE__ */ __name((args) => {
158
+ const { publicKey, keyType } = args;
159
+ const pemBinary = PEMToBinary(publicKey.pem);
160
+ const pemString = toString(pemBinary, "utf8");
161
+ const isDoubleEncoded = pemBinary.length > 0 && typeof pemString === "string" && pemString.startsWith("MF");
162
+ if (isDoubleEncoded) {
163
+ const actualDerBytes = fromString(pemString, "base64");
164
+ const keyDataStart = 24;
165
+ const keyData = actualDerBytes.slice(keyDataStart);
166
+ let publicKeyHex = toString(keyData, "hex");
167
+ if (publicKeyHex.length <= 128 && !publicKeyHex.startsWith("04")) {
168
+ publicKeyHex = "04" + publicKeyHex;
169
+ }
170
+ while (publicKeyHex.startsWith("04") && publicKeyHex.length < 130) {
171
+ publicKeyHex = publicKeyHex + "0";
172
+ }
173
+ if (publicKeyHex.startsWith("04") && publicKeyHex.length === 130) {
174
+ const xCoord = fromString(publicKeyHex.slice(2, 66), "hex");
175
+ const yCoord = fromString(publicKeyHex.slice(66, 130), "hex");
176
+ const prefix = new Uint8Array([
177
+ yCoord[31] % 2 === 0 ? 2 : 3
178
+ ]);
179
+ const compressedKey = new Uint8Array(33);
180
+ compressedKey.set(prefix, 0);
181
+ compressedKey.set(xCoord, 1);
182
+ return toString(compressedKey, "hex");
183
+ }
184
+ return publicKeyHex;
185
+ }
186
+ const publicKeyBinary = isAsn1Der(pemBinary) ? asn1DerToRawPublicKey(pemBinary, keyType) : pemBinary;
187
+ return isRawCompressedPublicKey(publicKeyBinary) ? hexStringFromUint8Array(publicKeyBinary) : toRawCompressedHexPublicKey(publicKeyBinary, keyType);
188
+ }, "decodeMusapPublicKey");
189
+ asMusapKeyInfo(args) {
190
+ const { keyId, publicKey, ...metadata } = {
191
+ ...args
192
+ };
193
+ const keyType = this.mapAlgorithmTypeToKeyType(args.algorithm);
194
+ const publicKeyHex = this.decodeMusapPublicKey({
195
+ publicKey,
196
+ keyType
197
+ });
198
+ const keyInfo = {
199
+ kid: keyId,
200
+ type: keyType,
201
+ publicKeyHex,
202
+ meta: metadata
203
+ };
204
+ const jwkThumbprint = calculateJwkThumbprintForKey({
205
+ key: keyInfo
206
+ });
207
+ keyInfo.meta = {
208
+ ...keyInfo.meta,
209
+ jwkThumbprint
210
+ };
211
+ return keyInfo;
212
+ }
213
+ sharedSecret(args) {
214
+ throw new Error("Not supported.");
215
+ }
216
+ recordToKeyAttributes(record) {
217
+ if (!record) {
218
+ return [];
219
+ }
220
+ return Object.entries(record).map(([key, value]) => ({
221
+ name: key,
222
+ value
223
+ }));
224
+ }
225
+ recordToSignatureAttributes(record) {
226
+ if (!record) {
227
+ return [];
228
+ }
229
+ return Object.entries(record).map(([key, value]) => ({
230
+ name: key,
231
+ value
232
+ }));
233
+ }
234
+ };
235
+ export {
236
+ MusapKeyManagementSystem
237
+ };
6
238
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,iEAAkE;AAAzD,iIAAA,wBAAwB,OAAA"}
1
+ {"version":3,"sources":["../src/MusapKeyManagerSystem.ts"],"sourcesContent":["import { PEMToBinary } from '@sphereon/ssi-sdk-ext.x509-utils'\nimport { IKey, ManagedKeyInfo, MinimalImportableKey, TKeyType } from '@veramo/core'\nimport {\n ExternalSscdSettings,\n IMusapClient,\n isSignatureAlgorithmType,\n JWSAlgorithm,\n KeyAlgorithm,\n KeyAlgorithmType,\n KeyAttribute,\n KeyGenReq,\n MusapClient,\n MusapKey,\n signatureAlgorithmFromKeyAlgorithm,\n SignatureAlgorithmType,\n SignatureAttribute,\n SignatureFormat,\n SignatureReq,\n SscdType,\n} from '@sphereon/musap-react-native'\nimport { AbstractKeyManagementSystem } from '@veramo/key-manager'\nimport { TextDecoder } from 'text-encoding'\nimport { Loggers } from '@sphereon/ssi-types'\nimport { KeyMetadata } from './index'\nimport {\n asn1DerToRawPublicKey,\n calculateJwkThumbprintForKey,\n hexStringFromUint8Array,\n isAsn1Der,\n isRawCompressedPublicKey,\n toRawCompressedHexPublicKey,\n} from '@sphereon/ssi-sdk-ext.key-utils'\n// @ts-ignore\nimport { fromString } from 'uint8arrays/from-string'\n// @ts-ignore\nimport { toString } from 'uint8arrays/to-string'\n\nexport const logger = Loggers.DEFAULT.get('sphereon:musap-rn-kms')\n\nexport class MusapKeyManagementSystem extends AbstractKeyManagementSystem {\n private musapClient: IMusapClient\n private readonly sscdType: SscdType\n private readonly sscdId: string\n private readonly defaultKeyAttributes: Record<string, string> | undefined\n private readonly defaultSignAttributes: Record<string, string> | undefined\n\n constructor(\n sscdType?: SscdType,\n sscdId?: string,\n opts?: {\n externalSscdSettings?: ExternalSscdSettings\n defaultKeyAttributes?: Record<string, string>\n defaultSignAttributes?: Record<string, string>\n }\n ) {\n super()\n try {\n this.musapClient = MusapClient\n this.sscdType = sscdType ? sscdType : 'TEE'\n this.sscdId = sscdId ?? this.sscdType\n this.defaultKeyAttributes = opts?.defaultKeyAttributes\n this.defaultSignAttributes = opts?.defaultSignAttributes\n\n const enabledSscds = this.musapClient.listEnabledSscds()\n if (!enabledSscds.some((value) => value.sscdId == sscdId)) {\n this.musapClient.enableSscd(this.sscdType, this.sscdId, opts?.externalSscdSettings)\n }\n } catch (e) {\n console.error('enableSscd', e)\n throw Error('enableSscd failed')\n }\n }\n\n async listKeys(): Promise<ManagedKeyInfo[]> {\n const keysJson: MusapKey[] = this.musapClient.listKeys() as MusapKey[]\n return keysJson.map((key) => this.asMusapKeyInfo(key))\n }\n\n async createKey(args: { type: TKeyType; meta?: KeyMetadata }): Promise<ManagedKeyInfo> {\n const { type, meta } = args\n if (meta === undefined || !('keyAlias' in meta)) {\n return Promise.reject(Error('a unique keyAlias field is required for MUSAP'))\n }\n\n if (this.sscdType == 'EXTERNAL') {\n const existingKeys: MusapKey[] = this.musapClient.listKeys() as MusapKey[]\n const extKey = existingKeys.find((musapKey) => (musapKey.sscdType as string) === 'External Signature') // FIXME returning does not match SscdType enum\n if (extKey) {\n extKey.algorithm = 'eccp256r1' // FIXME MUSAP announces key as rsa2k, but it's actually EC\n return this.asMusapKeyInfo(extKey)\n }\n return Promise.reject(Error(`No external key was bound yet for sscd ${this.sscdId}`))\n }\n\n const keyGenReq = {\n keyAlgorithm: this.mapKeyTypeToAlgorithmType(type),\n keyUsage: 'keyUsage' in meta ? (meta.keyUsage as string) : 'sign',\n keyAlias: meta.keyAlias as string,\n attributes: this.recordToKeyAttributes({ ...this.defaultKeyAttributes, ...('attributes' in meta ? meta.attributes : {}) }),\n role: 'role' in meta ? (meta.role as string) : 'administrator',\n } satisfies KeyGenReq\n\n try {\n const generatedKeyUri = await this.musapClient.generateKey(this.sscdType, keyGenReq)\n if (generatedKeyUri) {\n logger.debug('Generated key:', generatedKeyUri)\n const key = this.musapClient.getKeyByUri(generatedKeyUri)\n return this.asMusapKeyInfo(key)\n } else {\n return Promise.reject(new Error('Failed to generate key. No key URI'))\n }\n } catch (error) {\n logger.error('An error occurred:', error)\n throw error\n }\n }\n\n private mapKeyTypeToAlgorithmType = (type: TKeyType): KeyAlgorithmType => {\n switch (type) {\n case 'Secp256k1':\n return 'ECCP256K1'\n case 'Secp256r1':\n return 'ECCP256R1'\n case 'RSA':\n return 'RSA2K'\n default:\n throw new Error(`Key type ${type} is not supported by MUSAP`)\n }\n }\n\n private mapAlgorithmTypeToKeyType = (type: KeyAlgorithm): TKeyType => {\n switch (type) {\n case 'eccp256k1':\n return 'Secp256k1'\n case 'eccp256r1':\n return 'Secp256r1'\n case 'ecc_ed25519':\n return 'Ed25519'\n case 'rsa2k':\n case 'rsa4k':\n return 'RSA'\n default:\n throw new Error(`Key type ${type} is not supported.`)\n }\n }\n\n async deleteKey({ kid }: { kid: string }): Promise<boolean> {\n try {\n const key: MusapKey = this.musapClient.getKeyById(kid) as MusapKey\n if ((key.sscdType as string) === 'External Signature') {\n return true // FIXME we can't remove a eSim key for now because this would mean onboarding again\n }\n void this.musapClient.removeKey(kid)\n return true\n } catch (error) {\n console.warn('Failed to delete key:', error)\n return false\n }\n }\n\n private determineAlgorithm(providedAlgorithm: string | undefined, keyAlgorithm: KeyAlgorithm): SignatureAlgorithmType {\n if (providedAlgorithm === undefined) {\n return signatureAlgorithmFromKeyAlgorithm(keyAlgorithm)\n }\n\n if (isSignatureAlgorithmType(providedAlgorithm)) {\n return providedAlgorithm\n }\n\n // Veramo translates TKeyType to JWSAlgorithm\n return signatureAlgorithmFromKeyAlgorithm(providedAlgorithm as JWSAlgorithm)\n }\n\n async sign(args: { keyRef: Pick<IKey, 'kid'>; algorithm?: string; data: Uint8Array; [x: string]: any }): Promise<string> {\n if (!args.keyRef) {\n throw new Error('key_not_found: No key ref provided')\n }\n\n const data = new TextDecoder().decode(args.data as Uint8Array)\n\n const key: MusapKey = this.musapClient.getKeyById(args.keyRef.kid) as MusapKey\n if ((key.sscdType as string) === 'External Signature') {\n key.algorithm = 'eccp256r1' // FIXME MUSAP announces key as rsa2k, but it's actually EC\n }\n const signatureReq: SignatureReq = {\n keyUri: key.keyUri,\n data,\n algorithm: this.determineAlgorithm(args.algorithm, key.algorithm),\n displayText: args.displayText,\n transId: args.transId,\n format: (args.format as SignatureFormat) ?? 'RAW',\n attributes: this.recordToSignatureAttributes({ ...this.defaultSignAttributes, ...args.attributes }),\n }\n return this.musapClient.sign(signatureReq)\n }\n\n async importKey(args: Omit<MinimalImportableKey, 'kms'> & { privateKeyPEM?: string }): Promise<ManagedKeyInfo> {\n throw new Error('importKey is not implemented for MusapKeyManagementSystem.')\n }\n\n private decodeMusapPublicKey = (args: { publicKey: { pem: string }; keyType: TKeyType }): string => {\n const { publicKey, keyType } = args\n\n // First try the normal PEM decoding path\n const pemBinary = PEMToBinary(publicKey.pem)\n\n // Check if we got a string that looks like base64 (might be double encoded)\n // Convert Uint8Array to string safely\n const pemString = toString(pemBinary, 'utf8')\n const isDoubleEncoded = pemBinary.length > 0 && typeof pemString === 'string' && pemString.startsWith('MF')\n\n if (isDoubleEncoded) {\n // Handle double-encoded case\n const actualDerBytes = fromString(pemString, 'base64')\n\n // For double-encoded case, we know the key data starts after the header\n const keyDataStart = 24\n const keyData = actualDerBytes.slice(keyDataStart)\n\n // Convert to public key hex\n let publicKeyHex = toString(keyData, 'hex')\n\n // If it's not compressed yet and doesn't start with 0x04 (uncompressed point marker), add it\n if (publicKeyHex.length <= 128 && !publicKeyHex.startsWith('04')) {\n publicKeyHex = '04' + publicKeyHex\n }\n\n // Ensure we have full 65 bytes for uncompressed keys\n while (publicKeyHex.startsWith('04') && publicKeyHex.length < 130) {\n publicKeyHex = publicKeyHex + '0'\n }\n\n // Now convert to compressed format if needed\n if (publicKeyHex.startsWith('04') && publicKeyHex.length === 130) {\n const xCoord = fromString(publicKeyHex.slice(2, 66), 'hex')\n const yCoord = fromString(publicKeyHex.slice(66, 130), 'hex')\n const prefix = new Uint8Array([yCoord[31] % 2 === 0 ? 0x02 : 0x03])\n const compressedKey = new Uint8Array(33) // 1 byte prefix + 32 bytes x coordinate\n compressedKey.set(prefix, 0)\n compressedKey.set(xCoord, 1)\n return toString(compressedKey, 'hex')\n }\n\n return publicKeyHex\n }\n\n // Not double encoded, proceed with normal path\n const publicKeyBinary = isAsn1Der(pemBinary) ? asn1DerToRawPublicKey(pemBinary, keyType) : pemBinary\n return isRawCompressedPublicKey(publicKeyBinary)\n ? hexStringFromUint8Array(publicKeyBinary)\n : toRawCompressedHexPublicKey(publicKeyBinary, keyType)\n }\n\n private asMusapKeyInfo(args: MusapKey): ManagedKeyInfo {\n const { keyId, publicKey, ...metadata }: KeyMetadata = { ...args }\n const keyType = this.mapAlgorithmTypeToKeyType(args.algorithm)\n\n const publicKeyHex = this.decodeMusapPublicKey({\n publicKey: publicKey,\n keyType: keyType,\n })\n\n const keyInfo: Partial<ManagedKeyInfo> = {\n kid: keyId,\n type: keyType,\n publicKeyHex,\n meta: metadata,\n }\n\n const jwkThumbprint = calculateJwkThumbprintForKey({ key: keyInfo as ManagedKeyInfo })\n keyInfo.meta = { ...keyInfo.meta, jwkThumbprint }\n return keyInfo as ManagedKeyInfo\n }\n\n sharedSecret(args: { myKeyRef: Pick<IKey, 'kid'>; theirKey: Pick<IKey, 'publicKeyHex' | 'type'> }): Promise<string> {\n throw new Error('Not supported.')\n }\n\n private recordToKeyAttributes(record?: Record<string, string>): KeyAttribute[] {\n if (!record) {\n return []\n }\n return Object.entries(record).map(([key, value]) => ({\n name: key,\n value,\n }))\n }\n\n private recordToSignatureAttributes(record?: Record<string, string>): SignatureAttribute[] {\n if (!record) {\n return []\n }\n return Object.entries(record).map(([key, value]) => ({\n name: key,\n value,\n }))\n }\n}\n"],"mappings":"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","names":["PEMToBinary","isSignatureAlgorithmType","MusapClient","signatureAlgorithmFromKeyAlgorithm","AbstractKeyManagementSystem","TextDecoder","Loggers","asn1DerToRawPublicKey","calculateJwkThumbprintForKey","hexStringFromUint8Array","isAsn1Der","isRawCompressedPublicKey","toRawCompressedHexPublicKey","fromString","toString","logger","Loggers","DEFAULT","get","MusapKeyManagementSystem","AbstractKeyManagementSystem","musapClient","sscdType","sscdId","defaultKeyAttributes","defaultSignAttributes","constructor","opts","MusapClient","enabledSscds","listEnabledSscds","some","value","enableSscd","externalSscdSettings","e","console","error","Error","listKeys","keysJson","map","key","asMusapKeyInfo","createKey","args","type","meta","undefined","Promise","reject","existingKeys","extKey","find","musapKey","algorithm","keyGenReq","keyAlgorithm","mapKeyTypeToAlgorithmType","keyUsage","keyAlias","attributes","recordToKeyAttributes","role","generatedKeyUri","generateKey","debug","getKeyByUri","mapAlgorithmTypeToKeyType","deleteKey","kid","getKeyById","removeKey","warn","determineAlgorithm","providedAlgorithm","signatureAlgorithmFromKeyAlgorithm","isSignatureAlgorithmType","sign","keyRef","data","TextDecoder","decode","signatureReq","keyUri","displayText","transId","format","recordToSignatureAttributes","importKey","decodeMusapPublicKey","publicKey","keyType","pemBinary","PEMToBinary","pem","pemString","toString","isDoubleEncoded","length","startsWith","actualDerBytes","fromString","keyDataStart","keyData","slice","publicKeyHex","xCoord","yCoord","prefix","Uint8Array","compressedKey","set","publicKeyBinary","isAsn1Der","asn1DerToRawPublicKey","isRawCompressedPublicKey","hexStringFromUint8Array","toRawCompressedHexPublicKey","keyId","metadata","keyInfo","jwkThumbprint","calculateJwkThumbprintForKey","sharedSecret","record","Object","entries","name"]}
package/package.json CHANGED
@@ -1,31 +1,42 @@
1
1
  {
2
2
  "name": "@sphereon/ssi-sdk-ext.kms-musap-rn",
3
3
  "description": "Sphereon SSI-SDK react-native plugin for management of keys with musap.",
4
- "version": "0.28.0",
5
- "source": "src/index.ts",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
4
+ "version": "0.28.1-feature.esm.cjs.9+71682ea",
5
+ "source": "./src/index.ts",
6
+ "type": "module",
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ "import": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "require": "./dist/index.cjs"
18
+ }
19
+ },
8
20
  "scripts": {
9
- "build": "tsc --build",
10
- "build:clean": "tsc --build --clean && tsc --build"
21
+ "build": "tsup --config ../../tsup.config.ts --tsconfig ../../tsconfig.tsup.json"
11
22
  },
12
23
  "dependencies": {
13
24
  "@sphereon/musap-react-native": "0.2.1-next.170",
14
- "@sphereon/ssi-sdk-ext.key-utils": "0.28.0",
15
- "@sphereon/ssi-sdk-ext.x509-utils": "0.28.0",
16
- "@sphereon/ssi-types": "0.30.2-feature.SDK.41.oidf.support.286",
25
+ "@sphereon/ssi-sdk-ext.key-utils": "^0.28.1-feature.esm.cjs.9+71682ea",
26
+ "@sphereon/ssi-sdk-ext.x509-utils": "^0.28.1-feature.esm.cjs.9+71682ea",
27
+ "@sphereon/ssi-types": " ^0.33",
17
28
  "@veramo/core": "4.2.0",
18
29
  "@veramo/key-manager": "4.2.0",
19
30
  "@veramo/kms-local": "4.2.0",
20
31
  "text-encoding": "^0.7.0",
21
- "uint8arrays": "^3.1.1"
32
+ "uint8arrays": " 3.1.1"
22
33
  },
23
34
  "devDependencies": {
24
35
  "@types/text-encoding": "0.0.39"
25
36
  },
26
37
  "files": [
27
- "dist/**/*",
28
- "src/**/*",
38
+ "dist",
39
+ "src",
29
40
  "README.md",
30
41
  "LICENSE"
31
42
  ],
@@ -42,5 +53,5 @@
42
53
  "react-native",
43
54
  "Veramo"
44
55
  ],
45
- "gitHead": "ba773b2ba53f4a9b96bf4356789a0e68bf666816"
56
+ "gitHead": "71682ea0c528f5b32c421245c253b3bc9d6296a0"
46
57
  }
@@ -30,7 +30,10 @@ import {
30
30
  isRawCompressedPublicKey,
31
31
  toRawCompressedHexPublicKey,
32
32
  } from '@sphereon/ssi-sdk-ext.key-utils'
33
- import * as u8a from 'uint8arrays'
33
+ // @ts-ignore
34
+ import { fromString } from 'uint8arrays/from-string'
35
+ // @ts-ignore
36
+ import { toString } from 'uint8arrays/to-string'
34
37
 
35
38
  export const logger = Loggers.DEFAULT.get('sphereon:musap-rn-kms')
36
39
 
@@ -41,11 +44,15 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
41
44
  private readonly defaultKeyAttributes: Record<string, string> | undefined
42
45
  private readonly defaultSignAttributes: Record<string, string> | undefined
43
46
 
44
- constructor(sscdType?: SscdType, sscdId?: string, opts?: {
45
- externalSscdSettings?: ExternalSscdSettings,
46
- defaultKeyAttributes?: Record<string, string>,
47
- defaultSignAttributes?: Record<string, string>
48
- }) {
47
+ constructor(
48
+ sscdType?: SscdType,
49
+ sscdId?: string,
50
+ opts?: {
51
+ externalSscdSettings?: ExternalSscdSettings
52
+ defaultKeyAttributes?: Record<string, string>
53
+ defaultSignAttributes?: Record<string, string>
54
+ }
55
+ ) {
49
56
  super()
50
57
  try {
51
58
  this.musapClient = MusapClient
@@ -55,7 +62,7 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
55
62
  this.defaultSignAttributes = opts?.defaultSignAttributes
56
63
 
57
64
  const enabledSscds = this.musapClient.listEnabledSscds()
58
- if (!enabledSscds.some(value => value.sscdId == sscdId)) {
65
+ if (!enabledSscds.some((value) => value.sscdId == sscdId)) {
59
66
  this.musapClient.enableSscd(this.sscdType, this.sscdId, opts?.externalSscdSettings)
60
67
  }
61
68
  } catch (e) {
@@ -65,7 +72,7 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
65
72
  }
66
73
 
67
74
  async listKeys(): Promise<ManagedKeyInfo[]> {
68
- const keysJson: MusapKey[] = (this.musapClient.listKeys()) as MusapKey[]
75
+ const keysJson: MusapKey[] = this.musapClient.listKeys() as MusapKey[]
69
76
  return keysJson.map((key) => this.asMusapKeyInfo(key))
70
77
  }
71
78
 
@@ -76,8 +83,8 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
76
83
  }
77
84
 
78
85
  if (this.sscdType == 'EXTERNAL') {
79
- const existingKeys: MusapKey[] = (this.musapClient.listKeys()) as MusapKey[]
80
- const extKey = existingKeys.find(musapKey => musapKey.sscdType as string === 'External Signature') // FIXME returning does not match SscdType enum
86
+ const existingKeys: MusapKey[] = this.musapClient.listKeys() as MusapKey[]
87
+ const extKey = existingKeys.find((musapKey) => (musapKey.sscdType as string) === 'External Signature') // FIXME returning does not match SscdType enum
81
88
  if (extKey) {
82
89
  extKey.algorithm = 'eccp256r1' // FIXME MUSAP announces key as rsa2k, but it's actually EC
83
90
  return this.asMusapKeyInfo(extKey)
@@ -138,12 +145,12 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
138
145
  }
139
146
 
140
147
  async deleteKey({ kid }: { kid: string }): Promise<boolean> {
141
- try {
142
- const key: MusapKey = this.musapClient.getKeyById(kid) as MusapKey
143
- if (key.sscdType as string === 'External Signature') {
144
- return true // FIXME we can't remove a eSim key for now because this would mean onboarding again
145
- }
146
- void this.musapClient.removeKey(kid)
148
+ try {
149
+ const key: MusapKey = this.musapClient.getKeyById(kid) as MusapKey
150
+ if ((key.sscdType as string) === 'External Signature') {
151
+ return true // FIXME we can't remove a eSim key for now because this would mean onboarding again
152
+ }
153
+ void this.musapClient.removeKey(kid)
147
154
  return true
148
155
  } catch (error) {
149
156
  console.warn('Failed to delete key:', error)
@@ -164,12 +171,7 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
164
171
  return signatureAlgorithmFromKeyAlgorithm(providedAlgorithm as JWSAlgorithm)
165
172
  }
166
173
 
167
- async sign(args: {
168
- keyRef: Pick<IKey, 'kid'>;
169
- algorithm?: string;
170
- data: Uint8Array;
171
- [x: string]: any
172
- }): Promise<string> {
174
+ async sign(args: { keyRef: Pick<IKey, 'kid'>; algorithm?: string; data: Uint8Array; [x: string]: any }): Promise<string> {
173
175
  if (!args.keyRef) {
174
176
  throw new Error('key_not_found: No key ref provided')
175
177
  }
@@ -177,7 +179,7 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
177
179
  const data = new TextDecoder().decode(args.data as Uint8Array)
178
180
 
179
181
  const key: MusapKey = this.musapClient.getKeyById(args.keyRef.kid) as MusapKey
180
- if (key.sscdType as string === 'External Signature') {
182
+ if ((key.sscdType as string) === 'External Signature') {
181
183
  key.algorithm = 'eccp256r1' // FIXME MUSAP announces key as rsa2k, but it's actually EC
182
184
  }
183
185
  const signatureReq: SignatureReq = {
@@ -196,7 +198,7 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
196
198
  throw new Error('importKey is not implemented for MusapKeyManagementSystem.')
197
199
  }
198
200
 
199
- private decodeMusapPublicKey = (args: { publicKey: { pem: string }, keyType: TKeyType }): string => {
201
+ private decodeMusapPublicKey = (args: { publicKey: { pem: string }; keyType: TKeyType }): string => {
200
202
  const { publicKey, keyType } = args
201
203
 
202
204
  // First try the normal PEM decoding path
@@ -204,21 +206,19 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
204
206
 
205
207
  // Check if we got a string that looks like base64 (might be double encoded)
206
208
  // Convert Uint8Array to string safely
207
- const pemString = u8a.toString(pemBinary, 'utf8')
208
- const isDoubleEncoded = pemBinary.length > 0 &&
209
- typeof pemString === 'string' &&
210
- pemString.startsWith('MF')
209
+ const pemString = toString(pemBinary, 'utf8')
210
+ const isDoubleEncoded = pemBinary.length > 0 && typeof pemString === 'string' && pemString.startsWith('MF')
211
211
 
212
212
  if (isDoubleEncoded) {
213
213
  // Handle double-encoded case
214
- const actualDerBytes = u8a.fromString(pemString, 'base64')
214
+ const actualDerBytes = fromString(pemString, 'base64')
215
215
 
216
216
  // For double-encoded case, we know the key data starts after the header
217
217
  const keyDataStart = 24
218
218
  const keyData = actualDerBytes.slice(keyDataStart)
219
219
 
220
220
  // Convert to public key hex
221
- let publicKeyHex = u8a.toString(keyData, 'hex')
221
+ let publicKeyHex = toString(keyData, 'hex')
222
222
 
223
223
  // If it's not compressed yet and doesn't start with 0x04 (uncompressed point marker), add it
224
224
  if (publicKeyHex.length <= 128 && !publicKeyHex.startsWith('04')) {
@@ -232,13 +232,13 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
232
232
 
233
233
  // Now convert to compressed format if needed
234
234
  if (publicKeyHex.startsWith('04') && publicKeyHex.length === 130) {
235
- const xCoord = u8a.fromString(publicKeyHex.slice(2, 66), 'hex')
236
- const yCoord = u8a.fromString(publicKeyHex.slice(66, 130), 'hex')
235
+ const xCoord = fromString(publicKeyHex.slice(2, 66), 'hex')
236
+ const yCoord = fromString(publicKeyHex.slice(66, 130), 'hex')
237
237
  const prefix = new Uint8Array([yCoord[31] % 2 === 0 ? 0x02 : 0x03])
238
238
  const compressedKey = new Uint8Array(33) // 1 byte prefix + 32 bytes x coordinate
239
239
  compressedKey.set(prefix, 0)
240
240
  compressedKey.set(xCoord, 1)
241
- return u8a.toString(compressedKey, 'hex')
241
+ return toString(compressedKey, 'hex')
242
242
  }
243
243
 
244
244
  return publicKeyHex
@@ -250,7 +250,6 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
250
250
  ? hexStringFromUint8Array(publicKeyBinary)
251
251
  : toRawCompressedHexPublicKey(publicKeyBinary, keyType)
252
252
  }
253
-
254
253
 
255
254
  private asMusapKeyInfo(args: MusapKey): ManagedKeyInfo {
256
255
  const { keyId, publicKey, ...metadata }: KeyMetadata = { ...args }
@@ -258,7 +257,7 @@ export class MusapKeyManagementSystem extends AbstractKeyManagementSystem {
258
257
 
259
258
  const publicKeyHex = this.decodeMusapPublicKey({
260
259
  publicKey: publicKey,
261
- keyType: keyType
260
+ keyType: keyType,
262
261
  })
263
262
 
264
263
  const keyInfo: Partial<ManagedKeyInfo> = {
@@ -1 +0,0 @@
1
- {"version":3,"file":"MusapKeyManagerSystem.d.ts","sourceRoot":"","sources":["../src/MusapKeyManagerSystem.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,IAAI,EAAE,cAAc,EAAE,oBAAoB,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAA;AACnF,OAAO,EACL,oBAAoB,EAepB,QAAQ,EACT,MAAM,8BAA8B,CAAA;AACrC,OAAO,EAAE,2BAA2B,EAAE,MAAM,qBAAqB,CAAA;AAGjE,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAWrC,eAAO,MAAM,MAAM,sDAA+C,CAAA;AAElE,qBAAa,wBAAyB,SAAQ,2BAA2B;IACvE,OAAO,CAAC,WAAW,CAAc;IACjC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAU;IACnC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAQ;IAC/B,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAoC;IACzE,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAoC;gBAE9D,QAAQ,CAAC,EAAE,QAAQ,EAAE,MAAM,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE;QACvD,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;QAC5C,oBAAoB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QAC9C,qBAAqB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;KAC/C;IAmBK,QAAQ,IAAI,OAAO,CAAC,cAAc,EAAE,CAAC;IAKrC,SAAS,CAAC,IAAI,EAAE;QAAE,IAAI,EAAE,QAAQ,CAAC;QAAC,IAAI,CAAC,EAAE,WAAW,CAAA;KAAE,GAAG,OAAO,CAAC,cAAc,CAAC;IAuCtF,OAAO,CAAC,yBAAyB,CAWhC;IAED,OAAO,CAAC,yBAAyB,CAchC;IAEK,SAAS,CAAC,EAAE,GAAG,EAAE,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,OAAO,CAAC;IAc3D,OAAO,CAAC,kBAAkB;IAapB,IAAI,CAAC,IAAI,EAAE;QACf,MAAM,EAAE,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;QAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,IAAI,EAAE,UAAU,CAAC;QACjB,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;KACjB,GAAG,OAAO,CAAC,MAAM,CAAC;IAuBb,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,oBAAoB,EAAE,KAAK,CAAC,GAAG;QAAE,aAAa,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,cAAc,CAAC;IAI9G,OAAO,CAAC,oBAAoB,CAqD3B;IAGD,OAAO,CAAC,cAAc;IAqBtB,YAAY,CAAC,IAAI,EAAE;QAAE,QAAQ,EAAE,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAC,IAAI,EAAE,cAAc,GAAG,MAAM,CAAC,CAAA;KAAE,GAAG,OAAO,CAAC,MAAM,CAAC;IAInH,OAAO,CAAC,qBAAqB;IAU7B,OAAO,CAAC,2BAA2B;CASpC"}
@@ -1,284 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
26
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27
- return new (P || (P = Promise))(function (resolve, reject) {
28
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
29
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
30
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
31
- step((generator = generator.apply(thisArg, _arguments || [])).next());
32
- });
33
- };
34
- var __rest = (this && this.__rest) || function (s, e) {
35
- var t = {};
36
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
37
- t[p] = s[p];
38
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
39
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
40
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
41
- t[p[i]] = s[p[i]];
42
- }
43
- return t;
44
- };
45
- Object.defineProperty(exports, "__esModule", { value: true });
46
- exports.MusapKeyManagementSystem = exports.logger = void 0;
47
- const ssi_sdk_ext_x509_utils_1 = require("@sphereon/ssi-sdk-ext.x509-utils");
48
- const musap_react_native_1 = require("@sphereon/musap-react-native");
49
- const key_manager_1 = require("@veramo/key-manager");
50
- const text_encoding_1 = require("text-encoding");
51
- const ssi_types_1 = require("@sphereon/ssi-types");
52
- const ssi_sdk_ext_key_utils_1 = require("@sphereon/ssi-sdk-ext.key-utils");
53
- const u8a = __importStar(require("uint8arrays"));
54
- exports.logger = ssi_types_1.Loggers.DEFAULT.get('sphereon:musap-rn-kms');
55
- class MusapKeyManagementSystem extends key_manager_1.AbstractKeyManagementSystem {
56
- constructor(sscdType, sscdId, opts) {
57
- super();
58
- this.mapKeyTypeToAlgorithmType = (type) => {
59
- switch (type) {
60
- case 'Secp256k1':
61
- return 'ECCP256K1';
62
- case 'Secp256r1':
63
- return 'ECCP256R1';
64
- case 'RSA':
65
- return 'RSA2K';
66
- default:
67
- throw new Error(`Key type ${type} is not supported by MUSAP`);
68
- }
69
- };
70
- this.mapAlgorithmTypeToKeyType = (type) => {
71
- switch (type) {
72
- case 'eccp256k1':
73
- return 'Secp256k1';
74
- case 'eccp256r1':
75
- return 'Secp256r1';
76
- case 'ecc_ed25519':
77
- return 'Ed25519';
78
- case 'rsa2k':
79
- case 'rsa4k':
80
- return 'RSA';
81
- default:
82
- throw new Error(`Key type ${type} is not supported.`);
83
- }
84
- };
85
- this.decodeMusapPublicKey = (args) => {
86
- const { publicKey, keyType } = args;
87
- // First try the normal PEM decoding path
88
- const pemBinary = (0, ssi_sdk_ext_x509_utils_1.PEMToBinary)(publicKey.pem);
89
- // Check if we got a string that looks like base64 (might be double encoded)
90
- // Convert Uint8Array to string safely
91
- const pemString = u8a.toString(pemBinary, 'utf8');
92
- const isDoubleEncoded = pemBinary.length > 0 &&
93
- typeof pemString === 'string' &&
94
- pemString.startsWith('MF');
95
- if (isDoubleEncoded) {
96
- // Handle double-encoded case
97
- const actualDerBytes = u8a.fromString(pemString, 'base64');
98
- // For double-encoded case, we know the key data starts after the header
99
- const keyDataStart = 24;
100
- const keyData = actualDerBytes.slice(keyDataStart);
101
- // Convert to public key hex
102
- let publicKeyHex = u8a.toString(keyData, 'hex');
103
- // If it's not compressed yet and doesn't start with 0x04 (uncompressed point marker), add it
104
- if (publicKeyHex.length <= 128 && !publicKeyHex.startsWith('04')) {
105
- publicKeyHex = '04' + publicKeyHex;
106
- }
107
- // Ensure we have full 65 bytes for uncompressed keys
108
- while (publicKeyHex.startsWith('04') && publicKeyHex.length < 130) {
109
- publicKeyHex = publicKeyHex + '0';
110
- }
111
- // Now convert to compressed format if needed
112
- if (publicKeyHex.startsWith('04') && publicKeyHex.length === 130) {
113
- const xCoord = u8a.fromString(publicKeyHex.slice(2, 66), 'hex');
114
- const yCoord = u8a.fromString(publicKeyHex.slice(66, 130), 'hex');
115
- const prefix = new Uint8Array([yCoord[31] % 2 === 0 ? 0x02 : 0x03]);
116
- const compressedKey = new Uint8Array(33); // 1 byte prefix + 32 bytes x coordinate
117
- compressedKey.set(prefix, 0);
118
- compressedKey.set(xCoord, 1);
119
- return u8a.toString(compressedKey, 'hex');
120
- }
121
- return publicKeyHex;
122
- }
123
- // Not double encoded, proceed with normal path
124
- const publicKeyBinary = (0, ssi_sdk_ext_key_utils_1.isAsn1Der)(pemBinary) ? (0, ssi_sdk_ext_key_utils_1.asn1DerToRawPublicKey)(pemBinary, keyType) : pemBinary;
125
- return (0, ssi_sdk_ext_key_utils_1.isRawCompressedPublicKey)(publicKeyBinary)
126
- ? (0, ssi_sdk_ext_key_utils_1.hexStringFromUint8Array)(publicKeyBinary)
127
- : (0, ssi_sdk_ext_key_utils_1.toRawCompressedHexPublicKey)(publicKeyBinary, keyType);
128
- };
129
- try {
130
- this.musapClient = musap_react_native_1.MusapClient;
131
- this.sscdType = sscdType ? sscdType : 'TEE';
132
- this.sscdId = sscdId !== null && sscdId !== void 0 ? sscdId : this.sscdType;
133
- this.defaultKeyAttributes = opts === null || opts === void 0 ? void 0 : opts.defaultKeyAttributes;
134
- this.defaultSignAttributes = opts === null || opts === void 0 ? void 0 : opts.defaultSignAttributes;
135
- const enabledSscds = this.musapClient.listEnabledSscds();
136
- if (!enabledSscds.some(value => value.sscdId == sscdId)) {
137
- this.musapClient.enableSscd(this.sscdType, this.sscdId, opts === null || opts === void 0 ? void 0 : opts.externalSscdSettings);
138
- }
139
- }
140
- catch (e) {
141
- console.error('enableSscd', e);
142
- throw Error('enableSscd failed');
143
- }
144
- }
145
- listKeys() {
146
- return __awaiter(this, void 0, void 0, function* () {
147
- const keysJson = (this.musapClient.listKeys());
148
- return keysJson.map((key) => this.asMusapKeyInfo(key));
149
- });
150
- }
151
- createKey(args) {
152
- return __awaiter(this, void 0, void 0, function* () {
153
- const { type, meta } = args;
154
- if (meta === undefined || !('keyAlias' in meta)) {
155
- return Promise.reject(Error('a unique keyAlias field is required for MUSAP'));
156
- }
157
- if (this.sscdType == 'EXTERNAL') {
158
- const existingKeys = (this.musapClient.listKeys());
159
- const extKey = existingKeys.find(musapKey => musapKey.sscdType === 'External Signature'); // FIXME returning does not match SscdType enum
160
- if (extKey) {
161
- extKey.algorithm = 'eccp256r1'; // FIXME MUSAP announces key as rsa2k, but it's actually EC
162
- return this.asMusapKeyInfo(extKey);
163
- }
164
- return Promise.reject(Error(`No external key was bound yet for sscd ${this.sscdId}`));
165
- }
166
- const keyGenReq = {
167
- keyAlgorithm: this.mapKeyTypeToAlgorithmType(type),
168
- keyUsage: 'keyUsage' in meta ? meta.keyUsage : 'sign',
169
- keyAlias: meta.keyAlias,
170
- attributes: this.recordToKeyAttributes(Object.assign(Object.assign({}, this.defaultKeyAttributes), ('attributes' in meta ? meta.attributes : {}))),
171
- role: 'role' in meta ? meta.role : 'administrator',
172
- };
173
- try {
174
- const generatedKeyUri = yield this.musapClient.generateKey(this.sscdType, keyGenReq);
175
- if (generatedKeyUri) {
176
- exports.logger.debug('Generated key:', generatedKeyUri);
177
- const key = this.musapClient.getKeyByUri(generatedKeyUri);
178
- return this.asMusapKeyInfo(key);
179
- }
180
- else {
181
- return Promise.reject(new Error('Failed to generate key. No key URI'));
182
- }
183
- }
184
- catch (error) {
185
- exports.logger.error('An error occurred:', error);
186
- throw error;
187
- }
188
- });
189
- }
190
- deleteKey(_a) {
191
- return __awaiter(this, arguments, void 0, function* ({ kid }) {
192
- try {
193
- const key = this.musapClient.getKeyById(kid);
194
- if (key.sscdType === 'External Signature') {
195
- return true; // FIXME we can't remove a eSim key for now because this would mean onboarding again
196
- }
197
- void this.musapClient.removeKey(kid);
198
- return true;
199
- }
200
- catch (error) {
201
- console.warn('Failed to delete key:', error);
202
- return false;
203
- }
204
- });
205
- }
206
- determineAlgorithm(providedAlgorithm, keyAlgorithm) {
207
- if (providedAlgorithm === undefined) {
208
- return (0, musap_react_native_1.signatureAlgorithmFromKeyAlgorithm)(keyAlgorithm);
209
- }
210
- if ((0, musap_react_native_1.isSignatureAlgorithmType)(providedAlgorithm)) {
211
- return providedAlgorithm;
212
- }
213
- // Veramo translates TKeyType to JWSAlgorithm
214
- return (0, musap_react_native_1.signatureAlgorithmFromKeyAlgorithm)(providedAlgorithm);
215
- }
216
- sign(args) {
217
- return __awaiter(this, void 0, void 0, function* () {
218
- var _a;
219
- if (!args.keyRef) {
220
- throw new Error('key_not_found: No key ref provided');
221
- }
222
- const data = new text_encoding_1.TextDecoder().decode(args.data);
223
- const key = this.musapClient.getKeyById(args.keyRef.kid);
224
- if (key.sscdType === 'External Signature') {
225
- key.algorithm = 'eccp256r1'; // FIXME MUSAP announces key as rsa2k, but it's actually EC
226
- }
227
- const signatureReq = {
228
- keyUri: key.keyUri,
229
- data,
230
- algorithm: this.determineAlgorithm(args.algorithm, key.algorithm),
231
- displayText: args.displayText,
232
- transId: args.transId,
233
- format: (_a = args.format) !== null && _a !== void 0 ? _a : 'RAW',
234
- attributes: this.recordToSignatureAttributes(Object.assign(Object.assign({}, this.defaultSignAttributes), args.attributes)),
235
- };
236
- return this.musapClient.sign(signatureReq);
237
- });
238
- }
239
- importKey(args) {
240
- return __awaiter(this, void 0, void 0, function* () {
241
- throw new Error('importKey is not implemented for MusapKeyManagementSystem.');
242
- });
243
- }
244
- asMusapKeyInfo(args) {
245
- const _a = Object.assign({}, args), { keyId, publicKey } = _a, metadata = __rest(_a, ["keyId", "publicKey"]);
246
- const keyType = this.mapAlgorithmTypeToKeyType(args.algorithm);
247
- const publicKeyHex = this.decodeMusapPublicKey({
248
- publicKey: publicKey,
249
- keyType: keyType
250
- });
251
- const keyInfo = {
252
- kid: keyId,
253
- type: keyType,
254
- publicKeyHex,
255
- meta: metadata,
256
- };
257
- const jwkThumbprint = (0, ssi_sdk_ext_key_utils_1.calculateJwkThumbprintForKey)({ key: keyInfo });
258
- keyInfo.meta = Object.assign(Object.assign({}, keyInfo.meta), { jwkThumbprint });
259
- return keyInfo;
260
- }
261
- sharedSecret(args) {
262
- throw new Error('Not supported.');
263
- }
264
- recordToKeyAttributes(record) {
265
- if (!record) {
266
- return [];
267
- }
268
- return Object.entries(record).map(([key, value]) => ({
269
- name: key,
270
- value,
271
- }));
272
- }
273
- recordToSignatureAttributes(record) {
274
- if (!record) {
275
- return [];
276
- }
277
- return Object.entries(record).map(([key, value]) => ({
278
- name: key,
279
- value,
280
- }));
281
- }
282
- }
283
- exports.MusapKeyManagementSystem = MusapKeyManagementSystem;
284
- //# sourceMappingURL=MusapKeyManagerSystem.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MusapKeyManagerSystem.js","sourceRoot":"","sources":["../src/MusapKeyManagerSystem.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,yBAAyB,CAAA;AAElE,MAAM,WAAW,WAAW;IAC1B,UAAU,CAAC,EAAE,MAAM,EAAE,CAAA;IAErB,CAAC,CAAC,EAAE,MAAM,GAAG,GAAG,CAAA;CACjB"}