@credo-ts/react-native 0.6.0-alpha-20251010224324 → 0.6.0-alpha-20251013104738

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.
@@ -68,7 +68,7 @@ var SecureEnvironmentKeyManagementService = class {
68
68
  try {
69
69
  return { signature: await secureEnvironment.sign(options.keyId, options.data) };
70
70
  } catch (error) {
71
- if (error instanceof secureEnvironment.KeyNotFoundError) throw new __credo_ts_core.Kms.KeyManagementKeyNotFoundError(options.keyId, this.backend);
71
+ if (error instanceof secureEnvironment.KeyNotFoundError) throw new __credo_ts_core.Kms.KeyManagementKeyNotFoundError(options.keyId, [this.backend]);
72
72
  throw new __credo_ts_core.Kms.KeyManagementError("Error signing with key", { cause: error });
73
73
  }
74
74
  }
@@ -91,7 +91,7 @@ var SecureEnvironmentKeyManagementService = class {
91
91
  const publicKeyBytes = await secureEnvironment.getPublicBytesForKeyId(keyId);
92
92
  return this.publicJwkFromPublicKeyBytes(publicKeyBytes, keyId);
93
93
  } catch (error) {
94
- if (error instanceof secureEnvironment.KeyNotFoundError) throw new __credo_ts_core.Kms.KeyManagementKeyNotFoundError(keyId, this.backend);
94
+ if (error instanceof secureEnvironment.KeyNotFoundError) throw new __credo_ts_core.Kms.KeyManagementKeyNotFoundError(keyId, [this.backend]);
95
95
  throw new __credo_ts_core.Kms.KeyManagementError(`Error retrieving key with id '${keyId}' from backend ${this.backend}`, { cause: error });
96
96
  }
97
97
  }
@@ -66,7 +66,7 @@ var SecureEnvironmentKeyManagementService = class {
66
66
  try {
67
67
  return { signature: await secureEnvironment.sign(options.keyId, options.data) };
68
68
  } catch (error) {
69
- if (error instanceof secureEnvironment.KeyNotFoundError) throw new Kms.KeyManagementKeyNotFoundError(options.keyId, this.backend);
69
+ if (error instanceof secureEnvironment.KeyNotFoundError) throw new Kms.KeyManagementKeyNotFoundError(options.keyId, [this.backend]);
70
70
  throw new Kms.KeyManagementError("Error signing with key", { cause: error });
71
71
  }
72
72
  }
@@ -89,7 +89,7 @@ var SecureEnvironmentKeyManagementService = class {
89
89
  const publicKeyBytes = await secureEnvironment.getPublicBytesForKeyId(keyId);
90
90
  return this.publicJwkFromPublicKeyBytes(publicKeyBytes, keyId);
91
91
  } catch (error) {
92
- if (error instanceof secureEnvironment.KeyNotFoundError) throw new Kms.KeyManagementKeyNotFoundError(keyId, this.backend);
92
+ if (error instanceof secureEnvironment.KeyNotFoundError) throw new Kms.KeyManagementKeyNotFoundError(keyId, [this.backend]);
93
93
  throw new Kms.KeyManagementError(`Error retrieving key with id '${keyId}' from backend ${this.backend}`, { cause: error });
94
94
  }
95
95
  }
@@ -1 +1 @@
1
- {"version":3,"file":"SecureEnvironmentKeyManagementService.mjs","names":[],"sources":["../../src/kms/SecureEnvironmentKeyManagementService.ts"],"sourcesContent":["import type { AgentContext } from '@credo-ts/core'\n\nimport { Kms, utils } from '@credo-ts/core'\n\nimport { importSecureEnvironment } from './secureEnvironment'\n\nexport class SecureEnvironmentKeyManagementService implements Kms.KeyManagementService {\n public readonly backend = 'secureEnvironment'\n private readonly secureEnvironment = importSecureEnvironment()\n\n public isOperationSupported(_agentContext: AgentContext, operation: Kms.KmsOperation): boolean {\n if (operation.operation === 'createKey') {\n return operation.type.kty === 'EC' && operation.type.crv === 'P-256'\n }\n\n if (operation.operation === 'sign') {\n return operation.algorithm === 'ES256'\n }\n\n if (operation.operation === 'deleteKey') {\n return true\n }\n\n return false\n }\n\n public randomBytes(_agentContext: AgentContext, _options: Kms.KmsRandomBytesOptions): Kms.KmsRandomBytesReturn {\n throw new Kms.KeyManagementError(`Generating random bytes is not supported for backend '${this.backend}'`)\n }\n\n public async getPublicKey(_agentContext: AgentContext, keyId: string): Promise<Kms.KmsJwkPublic | null> {\n try {\n return await this.getKeyAsserted(keyId)\n } catch (error) {\n if (error instanceof Kms.KeyManagementKeyNotFoundError) return null\n throw error\n }\n }\n\n public async importKey(): Promise<Kms.KmsImportKeyReturn<Kms.KmsJwkPrivate>> {\n throw new Kms.KeyManagementError(`Importing a key is not supported for backend '${this.backend}'`)\n }\n\n public async deleteKey(_agentContext: AgentContext, options: Kms.KmsDeleteKeyOptions): Promise<boolean> {\n const secureEnvironment = await this.secureEnvironment\n try {\n await secureEnvironment.deleteKey(options.keyId)\n return true\n } catch (error) {\n if (error instanceof secureEnvironment.KeyNotFoundError) {\n return false\n }\n\n throw new Kms.KeyManagementError(`Error deleting key with id '${options.keyId}' in backend '${this.backend}'`, {\n cause: error,\n })\n }\n }\n\n public async encrypt(): Promise<Kms.KmsEncryptReturn> {\n throw new Kms.KeyManagementError(`Encryption is not supported for backend '${this.backend}'`)\n }\n\n public async decrypt(): Promise<Kms.KmsDecryptReturn> {\n throw new Kms.KeyManagementError(`Decryption is not supported for backend '${this.backend}'`)\n }\n\n public async createKey(\n _agentContext: AgentContext,\n options: Kms.KmsCreateKeyOptions\n ): Promise<Kms.KmsCreateKeyReturn> {\n if (options.type.kty !== 'EC') {\n throw new Kms.KeyManagementAlgorithmNotSupportedError(\n `kty ${options.type.kty}. Only EC P-256 supported.`,\n this.backend\n )\n }\n if (options.type.crv !== 'P-256') {\n throw new Kms.KeyManagementAlgorithmNotSupportedError(\n `kty ${options.type.kty} with crv ${options.type.crv}. Only EC P-256 supported.`,\n this.backend\n )\n }\n\n const keyId = options.keyId ?? utils.uuid()\n const secureEnvironment = await this.secureEnvironment\n\n try {\n await secureEnvironment.generateKeypair(keyId)\n\n return {\n keyId,\n publicJwk: await this.getKeyAsserted(keyId),\n }\n } catch (error) {\n if (error instanceof Kms.KeyManagementError) throw error\n if (error instanceof secureEnvironment.KeyAlreadyExistsError) {\n throw new Kms.KeyManagementKeyExistsError(keyId, this.backend)\n }\n\n throw new Kms.KeyManagementError('Error creating key', { cause: error })\n }\n }\n\n public async sign(_agentContext: AgentContext, options: Kms.KmsSignOptions): Promise<Kms.KmsSignReturn> {\n if (options.algorithm !== 'ES256') {\n throw new Kms.KeyManagementAlgorithmNotSupportedError(\n `algorithm '${options.algorithm}'. Only 'ES256' supported.`,\n this.backend\n )\n }\n\n const secureEnvironment = await this.secureEnvironment\n\n try {\n // TODO: can we store something like 'use' for the key in secure environment?\n // Kms.assertKeyAllowsSign(publicJwk)\n\n // Perform the signing operation\n const signature = await secureEnvironment.sign(options.keyId, options.data)\n\n return {\n signature,\n }\n } catch (error) {\n if (error instanceof secureEnvironment.KeyNotFoundError) {\n throw new Kms.KeyManagementKeyNotFoundError(options.keyId, this.backend)\n }\n\n throw new Kms.KeyManagementError('Error signing with key', { cause: error })\n }\n }\n\n public async verify(): Promise<Kms.KmsVerifyReturn> {\n throw new Kms.KeyManagementError(`verification of signatures is not supported for backend '${this.backend}'`)\n }\n\n private publicJwkFromPublicKeyBytes(key: Uint8Array, keyId: string) {\n const publicJwk = Kms.PublicJwk.fromPublicKey<Kms.P256PublicJwk['publicKey']>({\n kty: 'EC',\n crv: 'P-256',\n publicKey: key,\n }).toJson()\n\n return {\n ...publicJwk,\n kid: keyId,\n } satisfies Kms.KmsJwkPublicEc\n }\n\n private async getKeyAsserted(keyId: string) {\n const secureEnvironment = await this.secureEnvironment\n\n try {\n const publicKeyBytes = await secureEnvironment.getPublicBytesForKeyId(keyId)\n return this.publicJwkFromPublicKeyBytes(publicKeyBytes, keyId)\n } catch (error) {\n if (error instanceof secureEnvironment.KeyNotFoundError) {\n throw new Kms.KeyManagementKeyNotFoundError(keyId, this.backend)\n }\n\n throw new Kms.KeyManagementError(`Error retrieving key with id '${keyId}' from backend ${this.backend}`, {\n cause: error,\n })\n }\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"SecureEnvironmentKeyManagementService.mjs","names":[],"sources":["../../src/kms/SecureEnvironmentKeyManagementService.ts"],"sourcesContent":["import type { AgentContext } from '@credo-ts/core'\n\nimport { Kms, utils } from '@credo-ts/core'\n\nimport { importSecureEnvironment } from './secureEnvironment'\n\nexport class SecureEnvironmentKeyManagementService implements Kms.KeyManagementService {\n public readonly backend = 'secureEnvironment'\n private readonly secureEnvironment = importSecureEnvironment()\n\n public isOperationSupported(_agentContext: AgentContext, operation: Kms.KmsOperation): boolean {\n if (operation.operation === 'createKey') {\n return operation.type.kty === 'EC' && operation.type.crv === 'P-256'\n }\n\n if (operation.operation === 'sign') {\n return operation.algorithm === 'ES256'\n }\n\n if (operation.operation === 'deleteKey') {\n return true\n }\n\n return false\n }\n\n public randomBytes(_agentContext: AgentContext, _options: Kms.KmsRandomBytesOptions): Kms.KmsRandomBytesReturn {\n throw new Kms.KeyManagementError(`Generating random bytes is not supported for backend '${this.backend}'`)\n }\n\n public async getPublicKey(_agentContext: AgentContext, keyId: string): Promise<Kms.KmsJwkPublic | null> {\n try {\n return await this.getKeyAsserted(keyId)\n } catch (error) {\n if (error instanceof Kms.KeyManagementKeyNotFoundError) return null\n throw error\n }\n }\n\n public async importKey(): Promise<Kms.KmsImportKeyReturn<Kms.KmsJwkPrivate>> {\n throw new Kms.KeyManagementError(`Importing a key is not supported for backend '${this.backend}'`)\n }\n\n public async deleteKey(_agentContext: AgentContext, options: Kms.KmsDeleteKeyOptions): Promise<boolean> {\n const secureEnvironment = await this.secureEnvironment\n try {\n await secureEnvironment.deleteKey(options.keyId)\n return true\n } catch (error) {\n if (error instanceof secureEnvironment.KeyNotFoundError) {\n return false\n }\n\n throw new Kms.KeyManagementError(`Error deleting key with id '${options.keyId}' in backend '${this.backend}'`, {\n cause: error,\n })\n }\n }\n\n public async encrypt(): Promise<Kms.KmsEncryptReturn> {\n throw new Kms.KeyManagementError(`Encryption is not supported for backend '${this.backend}'`)\n }\n\n public async decrypt(): Promise<Kms.KmsDecryptReturn> {\n throw new Kms.KeyManagementError(`Decryption is not supported for backend '${this.backend}'`)\n }\n\n public async createKey(\n _agentContext: AgentContext,\n options: Kms.KmsCreateKeyOptions\n ): Promise<Kms.KmsCreateKeyReturn> {\n if (options.type.kty !== 'EC') {\n throw new Kms.KeyManagementAlgorithmNotSupportedError(\n `kty ${options.type.kty}. Only EC P-256 supported.`,\n this.backend\n )\n }\n if (options.type.crv !== 'P-256') {\n throw new Kms.KeyManagementAlgorithmNotSupportedError(\n `kty ${options.type.kty} with crv ${options.type.crv}. Only EC P-256 supported.`,\n this.backend\n )\n }\n\n const keyId = options.keyId ?? utils.uuid()\n const secureEnvironment = await this.secureEnvironment\n\n try {\n await secureEnvironment.generateKeypair(keyId)\n\n return {\n keyId,\n publicJwk: await this.getKeyAsserted(keyId),\n }\n } catch (error) {\n if (error instanceof Kms.KeyManagementError) throw error\n if (error instanceof secureEnvironment.KeyAlreadyExistsError) {\n throw new Kms.KeyManagementKeyExistsError(keyId, this.backend)\n }\n\n throw new Kms.KeyManagementError('Error creating key', { cause: error })\n }\n }\n\n public async sign(_agentContext: AgentContext, options: Kms.KmsSignOptions): Promise<Kms.KmsSignReturn> {\n if (options.algorithm !== 'ES256') {\n throw new Kms.KeyManagementAlgorithmNotSupportedError(\n `algorithm '${options.algorithm}'. Only 'ES256' supported.`,\n this.backend\n )\n }\n\n const secureEnvironment = await this.secureEnvironment\n\n try {\n // TODO: can we store something like 'use' for the key in secure environment?\n // Kms.assertKeyAllowsSign(publicJwk)\n\n // Perform the signing operation\n const signature = await secureEnvironment.sign(options.keyId, options.data)\n\n return {\n signature,\n }\n } catch (error) {\n if (error instanceof secureEnvironment.KeyNotFoundError) {\n throw new Kms.KeyManagementKeyNotFoundError(options.keyId, [this.backend])\n }\n\n throw new Kms.KeyManagementError('Error signing with key', { cause: error })\n }\n }\n\n public async verify(): Promise<Kms.KmsVerifyReturn> {\n throw new Kms.KeyManagementError(`verification of signatures is not supported for backend '${this.backend}'`)\n }\n\n private publicJwkFromPublicKeyBytes(key: Uint8Array, keyId: string) {\n const publicJwk = Kms.PublicJwk.fromPublicKey<Kms.P256PublicJwk['publicKey']>({\n kty: 'EC',\n crv: 'P-256',\n publicKey: key,\n }).toJson()\n\n return {\n ...publicJwk,\n kid: keyId,\n } satisfies Kms.KmsJwkPublicEc\n }\n\n private async getKeyAsserted(keyId: string) {\n const secureEnvironment = await this.secureEnvironment\n\n try {\n const publicKeyBytes = await secureEnvironment.getPublicBytesForKeyId(keyId)\n return this.publicJwkFromPublicKeyBytes(publicKeyBytes, keyId)\n } catch (error) {\n if (error instanceof secureEnvironment.KeyNotFoundError) {\n throw new Kms.KeyManagementKeyNotFoundError(keyId, [this.backend])\n }\n\n throw new Kms.KeyManagementError(`Error retrieving key with id '${keyId}' from backend ${this.backend}`, {\n cause: error,\n })\n }\n }\n}\n"],"mappings":"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"}
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "./package.json": "./package.json"
10
10
  },
11
- "version": "0.6.0-alpha-20251010224324",
11
+ "version": "0.6.0-alpha-20251013104738",
12
12
  "files": [
13
13
  "build"
14
14
  ],
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "@azure/core-asynciterator-polyfill": "^1.0.2",
27
27
  "events": "^3.3.0",
28
- "@credo-ts/core": "0.6.0-alpha-20251010224324"
28
+ "@credo-ts/core": "0.6.0-alpha-20251013104738"
29
29
  },
30
30
  "devDependencies": {
31
31
  "react-native": "^0.79.3",