-
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.
Signed-off-by: Timo Glastra <[email protected]> Co-authored-by: Timo Glastra <[email protected]>
- Loading branch information
1 parent
d61d4b1
commit 9cff29c
Showing
91 changed files
with
652 additions
and
353 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
apps/ausweis/src/app/(app)/notifications/openIdPresentation.tsx
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
apps/ausweis/src/features/onboarding/screens/biometrics.tsx
This file was deleted.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,5 +1,5 @@ | ||
{ | ||
"name": "ausweis-wallet", | ||
"name": "animo-easypid", | ||
"version": "1.5.1", | ||
"main": "index.ts", | ||
"private": true, | ||
|
6 changes: 3 additions & 3 deletions
6
apps/ausweis/src/agent/index.ts → apps/easypid/src/agent/index.ts
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,10 +1,10 @@ | ||
import { type AusweisAppAgent, useAgent } from '@package/agent' | ||
import { type EasyPIDAppAgent, useAgent } from '@package/agent' | ||
import { useSecureUnlock as _useSecureUnlock } from '@package/secure-store/secureUnlock' | ||
|
||
export { initializeAppAgent } from './initialize' | ||
|
||
export const useAppAgent = useAgent<AusweisAppAgent> | ||
export type AppAgent = AusweisAppAgent | ||
export const useAppAgent = useAgent<EasyPIDAppAgent> | ||
export type AppAgent = EasyPIDAppAgent | ||
export type SecureUnlockContext = { agent: AppAgent } | ||
|
||
export const useSecureUnlock = () => _useSecureUnlock<SecureUnlockContext>() |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { trustedX509Certificates } from '@easypid/constants' | ||
import { initializeEasyPIDAgent } from '@package/agent' | ||
|
||
export function initializeAppAgent({ walletKey }: { walletKey: string }) { | ||
return initializeEasyPIDAgent({ | ||
keyDerivation: 'raw', | ||
walletId: 'ausweis-wallet', | ||
walletKey, | ||
walletLabel: 'EasyPID Wallet', | ||
trustedX509Certificates, | ||
}) | ||
} |
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
apps/ausweis/src/app/(app)/_layout.tsx → apps/easypid/src/app/(app)/_layout.tsx
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
2 changes: 1 addition & 1 deletion
2
...ausweis/src/app/(app)/credentials/pid.tsx → ...easypid/src/app/(app)/credentials/pid.tsx
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
2 changes: 1 addition & 1 deletion
2
apps/ausweis/src/app/(app)/index.tsx → apps/easypid/src/app/(app)/index.tsx
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
5 changes: 5 additions & 0 deletions
5
apps/easypid/src/app/(app)/notifications/openIdPresentation.tsx
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { OpenIdPresentationNotificationScreen } from '@package/app' | ||
|
||
export default function Screen() { | ||
return <OpenIdPresentationNotificationScreen /> | ||
} |
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
apps/ausweis/src/app/authenticate.tsx → apps/easypid/src/app/authenticate.tsx
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
2 changes: 1 addition & 1 deletion
2
apps/ausweis/src/app/onboarding/_layout.tsx → apps/easypid/src/app/onboarding/_layout.tsx
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
2 changes: 1 addition & 1 deletion
2
apps/ausweis/src/app/onboarding/index.tsx → apps/easypid/src/app/onboarding/index.tsx
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
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
apps/ausweis/src/crypto/aes.ts → apps/easypid/src/crypto/aes.ts
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,4 +1,4 @@ | ||
import { AUSWEIS_WALLET_INSTANCE_LONG_TERM_AES_KEY_ID } from '@ausweis/constants' | ||
import { AUSWEIS_WALLET_INSTANCE_LONG_TERM_AES_KEY_ID } from '@easypid/constants' | ||
import { aes256Gcm } from '@package/agent' | ||
|
||
export const ausweisAes256Gcm = aes256Gcm(AUSWEIS_WALLET_INSTANCE_LONG_TERM_AES_KEY_ID) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.