-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: hardware backed keys for openid4vci using P256
Signed-off-by: Berend Sliedrecht <[email protected]>
- Loading branch information
Berend Sliedrecht
committed
Jul 30, 2024
1 parent
ae80de0
commit fadad1a
Showing
8 changed files
with
218 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
import ExpoConstants from 'expo-constants' | ||
|
||
export const FUNKE_WALLET_INSTANCE_LONG_TERM_AES_KEY_ID = 'FUNKE_WALLET_INSTANCE_LONG_TERM_AES_KEY_ID' | ||
|
||
const TRUSTED_CERTIFICATES = ExpoConstants.expoConfig?.extra?.trustedCertificates as [string, ...string[]] | undefined | ||
|
||
if (!Array.isArray(TRUSTED_CERTIFICATES)) { | ||
throw new Error('Trusted Certificates provided in the expo config is not an array') | ||
} | ||
|
||
export const trustedCertificates = TRUSTED_CERTIFICATES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,51 @@ | ||
{ | ||
"name": "wallets", | ||
"private": true, | ||
"scripts": { | ||
"postinstall": "pnpm deps:check", | ||
"build": "pnpm -r build", | ||
"upgrade:tamagui": "pnpm up '*tamagui*'@latest '@tamagui/*'@latest", | ||
"upgrade:tamagui:canary": "pnpm up '*tamagui*'@canary '@tamagui/*'@canary", | ||
"deps:check": "check-dependency-version-consistency .", | ||
"deps:fix": "pnpm deps:check --fix", | ||
"types:check": "tsc --noEmit", | ||
"style:check": "biome check --unsafe", | ||
"style:fix": "biome check --write --unsafe" | ||
}, | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.8.1", | ||
"check-dependency-version-consistency": "^3.0.3", | ||
"typescript": "*" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"@types/react": "~18.2.79", | ||
"react": "18.2.0", | ||
"react-docgen-typescript": "2.2.2", | ||
"typescript": "~5.3.3", | ||
"@unimodules/react-native-adapter": "./noop", | ||
"@unimodules/core": "./noop", | ||
"name": "wallets", | ||
"private": true, | ||
"scripts": { | ||
"postinstall": "pnpm deps:check", | ||
"build": "pnpm -r build", | ||
"upgrade:tamagui": "pnpm up '*tamagui*'@latest '@tamagui/*'@latest", | ||
"upgrade:tamagui:canary": "pnpm up '*tamagui*'@canary '@tamagui/*'@canary", | ||
"deps:check": "check-dependency-version-consistency .", | ||
"deps:fix": "pnpm deps:check --fix", | ||
"types:check": "tsc --noEmit", | ||
"style:check": "biome check --unsafe", | ||
"style:fix": "biome check --write --unsafe" | ||
}, | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.8.1", | ||
"check-dependency-version-consistency": "^3.0.3", | ||
"typescript": "*" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"@types/react": "~18.2.79", | ||
"react": "18.2.0", | ||
"react-docgen-typescript": "2.2.2", | ||
"typescript": "~5.3.3", | ||
"@unimodules/react-native-adapter": "./noop", | ||
"@unimodules/core": "./noop", | ||
|
||
"@hyperledger/anoncreds-react-native": "^0.2.2", | ||
"@hyperledger/aries-askar-react-native": "^0.2.3", | ||
"@hyperledger/indy-vdr-react-native": "^0.2.0", | ||
"@hyperledger/anoncreds-react-native": "^0.2.2", | ||
"@hyperledger/aries-askar-react-native": "^0.2.3", | ||
"@hyperledger/indy-vdr-react-native": "^0.2.0", | ||
|
||
"@credo-ts/anoncreds": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/askar": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/cheqd": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/core": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/indy-vdr": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/openid4vc": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/question-answer": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/react-hooks": "0.6.1", | ||
"@credo-ts/react-native": "0.5.10-alpha-20240729100152" | ||
}, | ||
"patchedDependencies": { | ||
"@hyperledger/[email protected]": "patches/@[email protected]", | ||
"@hyperledger/[email protected]": "patches/@[email protected]" | ||
} | ||
} | ||
"@credo-ts/anoncreds": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/askar": "file:../../openwallet-foundation/credo-ts/packages/askar/credo-ts-askar-1.7.0.tgz", | ||
"@credo-ts/cheqd": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/core": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/indy-vdr": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/openid4vc": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/question-answer": "0.5.10-alpha-20240729100152", | ||
"@credo-ts/react-hooks": "0.6.1", | ||
"@credo-ts/react-native": "0.5.10-alpha-20240729100152" | ||
}, | ||
"patchedDependencies": { | ||
"@hyperledger/[email protected]": "patches/@[email protected]", | ||
"@hyperledger/[email protected]": "patches/@[email protected]" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.