-
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: use hardware backed keys (#125)
Signed-off-by: Berend Sliedrecht <[email protected]> Signed-off-by: Timo Glastra <[email protected]> Co-authored-by: Timo Glastra <[email protected]>
- Loading branch information
1 parent
62ea105
commit 123796e
Showing
14 changed files
with
774 additions
and
250 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
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 |
---|---|---|
|
@@ -27,10 +27,25 @@ | |
"react-docgen-typescript": "2.2.2", | ||
"typescript": "~5.3.3", | ||
"@unimodules/react-native-adapter": "./noop", | ||
"@unimodules/core": "./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", | ||
|
||
"@credo-ts/anoncreds": "0.5.10-alpha-20240730111842", | ||
"@credo-ts/askar": "0.5.10-alpha-20240730111842", | ||
"@credo-ts/cheqd": "0.5.10-alpha-20240730111842", | ||
"@credo-ts/core": "0.5.10-alpha-20240730111842", | ||
"@credo-ts/indy-vdr": "0.5.10-alpha-20240730111842", | ||
"@credo-ts/openid4vc": "0.5.10-alpha-20240730111842", | ||
"@credo-ts/question-answer": "0.5.10-alpha-20240730111842", | ||
"@credo-ts/react-hooks": "0.6.1", | ||
"@credo-ts/react-native": "0.5.10-alpha-20240730111842" | ||
}, | ||
"patchedDependencies": { | ||
"@credo-ts/[email protected]": "patches/@[email protected]" | ||
"@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
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.