├── .github └── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── .gitignore ├── .slather.yml ├── .swiftformat ├── .swiftlint.yml ├── Brewfile ├── Brewfile.lock.json ├── CONTRIBUTING.md ├── Danger.swift ├── LICENSE ├── Makefile ├── Modules ├── Features │ ├── BITActivity │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── BITActivity │ │ │ │ ├── Data │ │ │ │ │ └── Repositories │ │ │ │ │ │ └── CoreDataActivityRepository.swift │ │ │ │ ├── Domain │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── Activity.swift │ │ │ │ │ │ ├── ActivityType.swift │ │ │ │ │ │ ├── ActivityVerifier.swift │ │ │ │ │ │ ├── ActivityVerifierCredentialClaim.swift │ │ │ │ │ │ ├── ActivityVerifierCredentialClaimDisplay.swift │ │ │ │ │ │ └── Extensions │ │ │ │ │ │ │ ├── ActivityEntity+Activity.swift │ │ │ │ │ │ │ ├── ActivityVerifierCredentialClaimDisplayEntity+ActivityVerifierCredentialClaimDisplay.swift │ │ │ │ │ │ │ ├── ActivityVerifierCredentialClaimEntity+ActivityVerifierCredentialClaim.swift │ │ │ │ │ │ │ └── ActivityVerifierType+ActivityVerifier.swift │ │ │ │ │ ├── Repositories │ │ │ │ │ │ └── ActivityRepositoryProtocol.swift │ │ │ │ │ └── UseCases │ │ │ │ │ │ ├── Implementations │ │ │ │ │ │ └── DeleteActivityUseCase.swift │ │ │ │ │ │ └── Protocols │ │ │ │ │ │ └── DeleteActivityUseCaseProtocol.swift │ │ │ │ ├── Module │ │ │ │ │ ├── Container.swift │ │ │ │ │ └── Strings.swift │ │ │ │ ├── Presentation │ │ │ │ │ ├── ActivityCell │ │ │ │ │ │ ├── ActivityCellView.swift │ │ │ │ │ │ └── ActivityCellViewModel.swift │ │ │ │ │ ├── Badge │ │ │ │ │ │ ├── ActivityTypeBadge.swift │ │ │ │ │ │ └── DefaultBadge.swift │ │ │ │ │ └── LastActivity │ │ │ │ │ │ └── LastActivityView.swift │ │ │ │ └── Resources │ │ │ │ │ └── de.lproj │ │ │ │ │ └── Localizable.strings │ │ │ └── BITActivityMocks │ │ │ │ ├── Activity+Mocks.swift │ │ │ │ └── Resources │ │ │ │ ├── sample-activity-presentation.json │ │ │ │ └── sample-activity-receive.json │ │ ├── Tests │ │ │ └── BITActivityTests │ │ │ │ ├── Domain │ │ │ │ ├── Models │ │ │ │ │ └── ActivityUnitTests.swift │ │ │ │ └── UseCases │ │ │ │ │ └── DeleteActivityUseCaseTests.swift │ │ │ │ └── Presentation │ │ │ │ └── ActivityCellViewModelTests.swift │ │ └── swiftgen.yml │ ├── BITAppAuth │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ ├── package.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── BITAppAuth.xcscheme │ │ │ │ └── BITAppAuthTests.xcscheme │ │ ├── Makefile │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── BITAppAuth │ │ │ │ ├── Data │ │ │ │ └── Repository │ │ │ │ │ ├── LoginRepository.swift │ │ │ │ │ ├── SecretsRepository.swift │ │ │ │ │ └── UserDefaultBiometricRepository.swift │ │ │ │ ├── Domain │ │ │ │ ├── Errors │ │ │ │ │ └── AuthError.swift │ │ │ │ ├── Model │ │ │ │ │ ├── AuthMethod.swift │ │ │ │ │ ├── BiometricStepType.swift │ │ │ │ │ └── PinCode.swift │ │ │ │ ├── Repositories │ │ │ │ │ ├── BiometricRepositoryProtocol.swift │ │ │ │ │ ├── LockWalletRepositoryProtocol.swift │ │ │ │ │ ├── LoginRepositoryProtocol.swift │ │ │ │ │ ├── PepperRepositoryProtocol.swift │ │ │ │ │ └── UniquePassphraseRepositoryProtocol.swift │ │ │ │ ├── UseCases │ │ │ │ │ ├── Implementations │ │ │ │ │ │ ├── AllowBiometricUsageUseCase.swift │ │ │ │ │ │ ├── ChangeBiometricStatusUseCase.swift │ │ │ │ │ │ ├── GetBiometricTypeUseCase.swift │ │ │ │ │ │ ├── GetLockedWalletTimeLeftUseCase.swift │ │ │ │ │ │ ├── GetLoginAttemptCounterUseCase.swift │ │ │ │ │ │ ├── GetUniquePassphraseUseCase.swift │ │ │ │ │ │ ├── HasBiometricAuthUseCase.swift │ │ │ │ │ │ ├── HasDevicePinUseCase.swift │ │ │ │ │ │ ├── IsBiometricInvalidatedUseCase.swift │ │ │ │ │ │ ├── IsBiometricUsageAllowedUseCase.swift │ │ │ │ │ │ ├── LockWalletUseCase.swift │ │ │ │ │ │ ├── RegisterLoginAttemptCounterUseCase.swift │ │ │ │ │ │ ├── RegisterPinCodeUseCase.swift │ │ │ │ │ │ ├── RequestBiometricAuthUseCase.swift │ │ │ │ │ │ ├── ResetLoginAttemptCounterUseCase.swift │ │ │ │ │ │ ├── UnlockWalletUseCase.swift │ │ │ │ │ │ ├── UpdatePinCodeUseCase.swift │ │ │ │ │ │ ├── ValidateBiometricUseCase.swift │ │ │ │ │ │ └── ValidatePinCodeUseCase.swift │ │ │ │ │ └── Protocols │ │ │ │ │ │ ├── AllowBiometricUsageUseCaseProtocol.swift │ │ │ │ │ │ ├── ChangeBiometricStatusUseCaseProtocol.swift │ │ │ │ │ │ ├── GetBiometricTypeUseCaseProtocol.swift │ │ │ │ │ │ ├── GetLockedWalletTimeLeftUseCaseProtocol.swift │ │ │ │ │ │ ├── GetLoginAttemptCounterUseCaseProtocol.swift │ │ │ │ │ │ ├── GetUniquePassphraseUseCaseProtocol.swift │ │ │ │ │ │ ├── HasBiometricAuthUseCaseProtocol.swift │ │ │ │ │ │ ├── HasDevicePinUseCaseProtocol.swift │ │ │ │ │ │ ├── IsBiometricInvalidatedUseCaseProtocol.swift │ │ │ │ │ │ ├── IsBiometricUsageAllowedUseCaseProtocol.swift │ │ │ │ │ │ ├── LockWalletUseCaseProtocol.swift │ │ │ │ │ │ ├── RegisterLoginAttemptCounterUseCaseProtocol.swift │ │ │ │ │ │ ├── RegisterPinCodeUseCaseProtocol.swift │ │ │ │ │ │ ├── RequestBiometricAuthUseCaseProtocol.swift │ │ │ │ │ │ ├── ResetLoginAttemptCounterUseCaseProtocol.swift │ │ │ │ │ │ ├── UnlockWalletUseCaseProtocol.swift │ │ │ │ │ │ ├── UpdatePinCodeUseCaseProtocol.swift │ │ │ │ │ │ ├── ValidateBiometricUseCaseProtocol.swift │ │ │ │ │ │ └── ValidatePinCodeUseCaseProtocol.swift │ │ │ │ └── Utils │ │ │ │ │ ├── ContextManager.swift │ │ │ │ │ ├── PepperService.swift │ │ │ │ │ ├── PinCodeManager.swift │ │ │ │ │ ├── Protocols │ │ │ │ │ ├── ContextManagerProtocol.swift │ │ │ │ │ ├── PepperServiceProtocol.swift │ │ │ │ │ ├── PinCodeManagerProtocol.swift │ │ │ │ │ └── UniquePassphraseManagerProtocol.swift │ │ │ │ │ └── UniquePassphraseManager.swift │ │ │ │ ├── Helpers │ │ │ │ ├── AuthAssets.swift │ │ │ │ └── AuthenticationAssets.swift │ │ │ │ ├── Managers │ │ │ │ └── AuthManager.swift │ │ │ │ ├── Module │ │ │ │ ├── Assets.swift │ │ │ │ ├── Container.swift │ │ │ │ └── Strings.swift │ │ │ │ ├── Presentation │ │ │ │ ├── BiometricChange │ │ │ │ │ ├── BiometricChangeFlowView.swift │ │ │ │ │ ├── BiometricChangeFlowViewModel.swift │ │ │ │ │ └── BiometricChangeSettingsView.swift │ │ │ │ ├── Login │ │ │ │ │ ├── LoginHostingController.swift │ │ │ │ │ ├── LoginModule.swift │ │ │ │ │ ├── LoginRouter.swift │ │ │ │ │ ├── LoginRoutes.swift │ │ │ │ │ ├── LoginUseCases.swift │ │ │ │ │ ├── LoginView.swift │ │ │ │ │ └── LoginViewModel.swift │ │ │ │ ├── NoDevicePinCode │ │ │ │ │ ├── NoDevicePinCodeModule.swift │ │ │ │ │ ├── NoDevicePinCodeRouter.swift │ │ │ │ │ ├── NoDevicePinCodeView.swift │ │ │ │ │ └── NoDevicePinCodeViewModel.swift │ │ │ │ ├── PinCodeChange │ │ │ │ │ ├── PinCodeChangeFlowView.swift │ │ │ │ │ ├── PinCodeChangeFlowViewModel.swift │ │ │ │ │ └── PinCodeChangePagerView.swift │ │ │ │ ├── Registration │ │ │ │ │ └── PinCodeView.swift │ │ │ │ ├── Setup │ │ │ │ │ └── SetupView.swift │ │ │ │ └── Views │ │ │ │ │ └── PinCodeDotsView.swift │ │ │ │ └── Resources │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppLocked.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Vordergrund@2x.png │ │ │ │ │ └── Vordergrund@3x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── NoDevicePin.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── DevicePin.png │ │ │ │ │ ├── DevicePin@2x.png │ │ │ │ │ └── DevicePin@3x.png │ │ │ │ └── biometric.imageset │ │ │ │ │ ├── Biometrics@2x.png │ │ │ │ │ ├── Biometrics@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ └── de.lproj │ │ │ │ └── Localizable.strings │ │ ├── Tests │ │ │ └── BITAppAuthTests │ │ │ │ ├── Data │ │ │ │ ├── LockWalletRepositoryTests.swift │ │ │ │ ├── LoginRepositoryTests.swift │ │ │ │ ├── PepperRepositoryTests.swift │ │ │ │ └── UniquePassphraseRepositoryTests.swift │ │ │ │ ├── Domain │ │ │ │ ├── UseCases │ │ │ │ │ ├── AllowBiometricUsageUseCaseTests.swift │ │ │ │ │ ├── ChangeBiometricStatusUseCaseTests.swift │ │ │ │ │ ├── GetBiometricTypeUseCaseTests.swift │ │ │ │ │ ├── GetLockedWalletTimeLeftUseCaseTests.swift │ │ │ │ │ ├── GetLoginAttemptCounterUseCaseTests.swift │ │ │ │ │ ├── GetUniquePassphraseUseCaseTests.swift │ │ │ │ │ ├── HasBiometricAuthUseCaseTests.swift │ │ │ │ │ ├── HasDevicePinUseCaseTests.swift │ │ │ │ │ ├── IsBiometricInvalidatedUseCaseTests.swift │ │ │ │ │ ├── IsBiometricUsageAllowedUseCaseTests.swift │ │ │ │ │ ├── LockWalletUseCaseTests.swift │ │ │ │ │ ├── RegisterLoginAttemptCounterUseCaseTests.swift │ │ │ │ │ ├── RegisterPinCodeUseCaseTests.swift │ │ │ │ │ ├── RequestBiometricAuthUseCaseTests.swift │ │ │ │ │ ├── ResetLoginAttemptCounterUseCaseTests.swift │ │ │ │ │ ├── UnlockWalletUseCaseTests.swift │ │ │ │ │ ├── UpdatePinCodeUseCaseTests.swift │ │ │ │ │ ├── ValidateBiometricUseCaseTests.swift │ │ │ │ │ └── ValidatePinCodeUseCaseTests.swift │ │ │ │ └── Utils │ │ │ │ │ ├── ContextManagerTests.swift │ │ │ │ │ ├── PepperServiceTests.swift │ │ │ │ │ ├── PinCodeManagerTests.swift │ │ │ │ │ └── UniquePassphraseManagerTests.swift │ │ │ │ └── Presentation │ │ │ │ ├── BiometricChangeFlowViewModelTests.swift │ │ │ │ ├── LoginRouterMock.swift │ │ │ │ ├── LoginViewModelTests.swift │ │ │ │ └── PinCodeChangeFlowViewModelTests.swift │ │ └── swiftgen.yml │ ├── BITAppVersion │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BITAppVersion.xcscheme │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── BITAppVersion │ │ │ │ ├── Data │ │ │ │ └── BundleAppVersionRepository.swift │ │ │ │ ├── Domain │ │ │ │ ├── AppVersionError.swift │ │ │ │ ├── Model │ │ │ │ │ ├── AppVersion.swift │ │ │ │ │ └── BuildNumber.swift │ │ │ │ ├── Repositories │ │ │ │ │ └── AppVersionRepositoryProtocol.swift │ │ │ │ └── UseCases │ │ │ │ │ ├── GetAppVersionUseCase.swift │ │ │ │ │ ├── GetBuildNumberUseCase.swift │ │ │ │ │ └── Protocols │ │ │ │ │ ├── GetAppVersionUseCaseProtocol.swift │ │ │ │ │ └── GetBuildNumberUseCaseProtocol.swift │ │ │ │ ├── Module │ │ │ │ └── Container.swift │ │ │ │ └── Resources │ │ │ │ └── de.lproj │ │ │ │ └── Localizable.strings │ │ └── Tests │ │ │ └── BITAppVersionTests │ │ │ └── Domain │ │ │ ├── Models │ │ │ └── AppVersionTests.swift │ │ │ └── UseCases │ │ │ ├── GetAppVersionUseCaseTests.swift │ │ │ └── GetBuildNumberUseCaseTests.swift │ ├── BITCredential │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ ├── package.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BITCredential.xcscheme │ │ ├── Makefile │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── Sources │ │ │ ├── BITCredential │ │ │ │ ├── Data │ │ │ │ │ ├── Endpoints │ │ │ │ │ │ └── CredentialEndpoint.swift │ │ │ │ │ └── Repositories │ │ │ │ │ │ ├── ApiCredentialRepository.swift │ │ │ │ │ │ ├── CoreDataCredentialRepository.swift │ │ │ │ │ │ └── UserDefaultHasDeletedCredentialsRepository.swift │ │ │ │ ├── Domain │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AccessToken.swift │ │ │ │ │ │ ├── CredentialDetailBody.swift │ │ │ │ │ │ ├── CredentialOffer.swift │ │ │ │ │ │ ├── CredentialRequestBody.swift │ │ │ │ │ │ ├── FetchCredentialResponse.swift │ │ │ │ │ │ ├── IssuerPublicKeyInfo.swift │ │ │ │ │ │ └── OpenIdConfiguration.swift │ │ │ │ │ ├── Repositories │ │ │ │ │ │ ├── CredentialAccessTokenRepositoryProtocol.swift │ │ │ │ │ │ ├── CredentialActivityRepositoryProtocol.swift │ │ │ │ │ │ ├── CredentialRepositoryProtocol.swift │ │ │ │ │ │ └── HasDeletedCredentialRepositoryProtocol.swift │ │ │ │ │ ├── UseCases │ │ │ │ │ │ ├── AddActivityToCredentialUseCase.swift │ │ │ │ │ │ ├── CheckAndUpdateCredentialStatusUseCase.swift │ │ │ │ │ │ ├── DeleteCredentialUseCase.swift │ │ │ │ │ │ ├── FetchCredentialUseCase.swift │ │ │ │ │ │ ├── FetchMetadataUseCase.swift │ │ │ │ │ │ ├── GetCredentialsUseCase.swift │ │ │ │ │ │ ├── GetGroupedCredentialActivitiesUseCase.swift │ │ │ │ │ │ ├── GetLastActivityUseCase.swift │ │ │ │ │ │ ├── GetLastCredentialActivitiesUseCase.swift │ │ │ │ │ │ ├── HasDeletedCredentialUseCase.swift │ │ │ │ │ │ ├── Protocols │ │ │ │ │ │ │ ├── AddActivityToCredentialUseCaseProtocol.swift │ │ │ │ │ │ │ ├── CheckAndUpdateCredentialStatusUseCaseProtocol.swift │ │ │ │ │ │ │ ├── DeleteCredentialUseCaseProtocol.swift │ │ │ │ │ │ │ ├── FetchCredentialUseCaseProtocol.swift │ │ │ │ │ │ │ ├── FetchMetadataUseCaseProtocol.swift │ │ │ │ │ │ │ ├── GetCredentialsUseCaseProtocol.swift │ │ │ │ │ │ │ ├── GetGroupedCredentialActivitiesUseCaseProtocol.swift │ │ │ │ │ │ │ ├── GetLastActivityUseCaseProtocol.swift │ │ │ │ │ │ │ ├── GetLastCredentialActivitiesUseCaseProtocol.swift │ │ │ │ │ │ │ ├── HasDeletedCredentialUseCaseProtocol.swift │ │ │ │ │ │ │ └── SaveCredentialUseCaseProtocol.swift │ │ │ │ │ │ └── SaveCredentialUseCase.swift │ │ │ │ │ └── Utils │ │ │ │ │ │ ├── CredentialDidJWKGenerator.swift │ │ │ │ │ │ ├── CredentialJWTGenerator.swift │ │ │ │ │ │ ├── CredentialJWTValidator.swift │ │ │ │ │ │ ├── CredentialPrivateKeyGenerator.swift │ │ │ │ │ │ ├── Protocols │ │ │ │ │ │ ├── CredentialDidJWKGeneratorProtocol.swift │ │ │ │ │ │ ├── CredentialJWTGeneratorProtocol.swift │ │ │ │ │ │ ├── CredentialJWTValidatorProtocol.swift │ │ │ │ │ │ └── CredentialKeyPairGeneratorProtocol.swift │ │ │ │ │ │ └── Validators │ │ │ │ │ │ ├── RevocationValidator.swift │ │ │ │ │ │ ├── StatusCheckValidatorProtocol.swift │ │ │ │ │ │ ├── ValidFromValidator.swift │ │ │ │ │ │ └── ValidUntilValidator.swift │ │ │ │ ├── Module │ │ │ │ │ ├── Assets.swift │ │ │ │ │ ├── Container.swift │ │ │ │ │ └── Strings.swift │ │ │ │ ├── Presentation │ │ │ │ │ ├── Activities │ │ │ │ │ │ ├── CredentialActivitiesView.swift │ │ │ │ │ │ └── CredentialActivitiesViewModel.swift │ │ │ │ │ ├── ActivityDetail │ │ │ │ │ │ ├── ActivityDetailView.swift │ │ │ │ │ │ └── ActivityDetailViewModel.swift │ │ │ │ │ ├── Card │ │ │ │ │ │ ├── CredentialCard.swift │ │ │ │ │ │ ├── CredentialStatusBadge.swift │ │ │ │ │ │ ├── CredentialStatusLabel.swift │ │ │ │ │ │ ├── CredentialThumbnailCard.swift │ │ │ │ │ │ └── CredentialTinyCard.swift │ │ │ │ │ ├── Claims │ │ │ │ │ │ └── ClaimListView.swift │ │ │ │ │ ├── Delete │ │ │ │ │ │ ├── CredentialDeleteView.swift │ │ │ │ │ │ └── CredentialDeleteViewModel.swift │ │ │ │ │ ├── Detail │ │ │ │ │ │ ├── CredentialDetailContentView.swift │ │ │ │ │ │ ├── CredentialDetailView.swift │ │ │ │ │ │ ├── CredentialDetailViewModel.swift │ │ │ │ │ │ ├── CredentialDetailsCardView.swift │ │ │ │ │ │ └── CredentialDetailsCardViewModel.swift │ │ │ │ │ ├── List │ │ │ │ │ │ └── CredentialList.swift │ │ │ │ │ ├── Offer │ │ │ │ │ │ ├── CredentialOfferDeclineConfirmationView.swift │ │ │ │ │ │ ├── CredentialOfferDeclineConfirmationViewModel.swift │ │ │ │ │ │ ├── CredentialOfferHeaderView.swift │ │ │ │ │ │ ├── CredentialOfferHeaderViewModel.swift │ │ │ │ │ │ ├── CredentialOfferModule.swift │ │ │ │ │ │ ├── CredentialOfferRouter.swift │ │ │ │ │ │ ├── CredentialOfferView.swift │ │ │ │ │ │ └── CredentialOfferViewModel.swift │ │ │ │ │ ├── PoliceQRCode │ │ │ │ │ │ └── PoliceQRCodeView.swift │ │ │ │ │ └── Stack │ │ │ │ │ │ └── CredentialCardStack.swift │ │ │ │ └── Resources │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── DeleteCredential.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── ablehnen.png │ │ │ │ │ │ ├── ablehnen@2x.png │ │ │ │ │ │ └── ablehnen@3x.png │ │ │ │ │ ├── NoActivities.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── noActivities@2x.png │ │ │ │ │ │ └── noActivities@3x.png │ │ │ │ │ └── federal-logo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── federal-logo.png │ │ │ │ │ └── de.lproj │ │ │ │ │ └── Localizable.strings │ │ │ └── BITCredentialMocks │ │ │ │ ├── AccessToken+Mock.swift │ │ │ │ ├── CredentialDetailBody.swift │ │ │ │ ├── CredentialOffer+Mock.swift │ │ │ │ ├── CredentialRequestBody+Mock.swift │ │ │ │ ├── FetchCredentialResponse+Mock.swift │ │ │ │ ├── IssuerPublicKeyInfo+Mock.swift │ │ │ │ ├── OpenIdConfiguration+Mock.swift │ │ │ │ └── Resources │ │ │ │ ├── access-token.json │ │ │ │ ├── credential-request-body.json │ │ │ │ ├── jwks-multiple.json │ │ │ │ ├── jwks.json │ │ │ │ ├── multipass-credential-payload.json │ │ │ │ ├── oid-credential-offer.json │ │ │ │ ├── openid-configuration.json │ │ │ │ └── raw-credentials │ │ │ │ ├── raw-credential-jwt-expired.txt │ │ │ │ ├── raw-credential-jwt-invalid-disclosures.txt │ │ │ │ └── raw-credential-jwt.txt │ │ ├── Tests │ │ │ └── BITCredentialTests │ │ │ │ ├── Data │ │ │ │ ├── ApiCredentialRepositoryTests.swift │ │ │ │ ├── CredentialActivityRepositoryTests.swift │ │ │ │ ├── CredentialDidJWKGeneratorTests.swift │ │ │ │ ├── CredentialJWTGeneratorTests.swift │ │ │ │ ├── CredentialJWTValidatorTests.swift │ │ │ │ ├── CredentialPrivateKeyGeneratorTests.swift │ │ │ │ └── DatabaseCredentialRepositoryTests.swift │ │ │ │ ├── Domain │ │ │ │ ├── Model │ │ │ │ │ ├── CredentialDetailBodyTests.swift │ │ │ │ │ ├── CredentialMetadataTests.swift │ │ │ │ │ ├── CredentialTests.swift │ │ │ │ │ ├── DisplayLocalizableBITTests.swift │ │ │ │ │ └── DisplayLocalizableTests.swift │ │ │ │ ├── UseCase │ │ │ │ │ ├── AddActivityToCredentialUseCaseTests.swift │ │ │ │ │ ├── CheckAndUpdateCredentialStatusUseCaseTests.swift │ │ │ │ │ ├── DeleteCredentialUseCaseTests.swift │ │ │ │ │ ├── FetchCredentialUseCaseTests.swift │ │ │ │ │ ├── FetchMetadataUseCaseTests.swift │ │ │ │ │ ├── GetAllCredentialActivitiesUseCaseTests.swift │ │ │ │ │ ├── GetLastActivityUseCaseTests.swift │ │ │ │ │ ├── GetLastCredentialActivitiesUseCaseTests.swift │ │ │ │ │ ├── HasDeletedCredentialUseCaseTests.swift │ │ │ │ │ └── SaveCredentialUseCaseTests.swift │ │ │ │ └── Validators │ │ │ │ │ ├── RecovationValidatorTests.swift │ │ │ │ │ ├── ValidFromValidatorTests.swift │ │ │ │ │ └── ValidUntilValidatorTests.swift │ │ │ │ └── Presentation │ │ │ │ ├── ActivityDetailViewModelTests.swift │ │ │ │ ├── CredentialActivitiesViewModelTests.swift │ │ │ │ ├── CredentialDeleteViewModelTests.swift │ │ │ │ ├── CredentialDetailViewModelTests.swift │ │ │ │ ├── CredentialDetailsCardViewModelTests.swift │ │ │ │ ├── CredentialOfferDeclineConfirmationViewModelTests.swift │ │ │ │ └── CredentialOfferViewModelTests.swift │ │ └── swiftgen.yml │ ├── BITCredentialShared │ │ ├── .gitignore │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BITCredentialShared.xcscheme │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ ├── BITCredentialShared │ │ │ │ ├── Domain │ │ │ │ │ └── Model │ │ │ │ │ │ ├── Credential.swift │ │ │ │ │ │ ├── CredentialClaim.swift │ │ │ │ │ │ ├── CredentialClaimDisplay.swift │ │ │ │ │ │ ├── CredentialDisplay.swift │ │ │ │ │ │ ├── CredentialIssuerDisplay.swift │ │ │ │ │ │ ├── CredentialMetadata.swift │ │ │ │ │ │ ├── CredentialStatus.swift │ │ │ │ │ │ ├── DisplayLocalizable.swift │ │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── CredentialClaimDisplayEntity+Display.swift │ │ │ │ │ │ ├── CredentialClaimEntity+Claim.swift │ │ │ │ │ │ ├── CredentialDisplayEntity+CredentialDisplay.swift │ │ │ │ │ │ ├── CredentialEntity+Credential.swift │ │ │ │ │ │ ├── CredentialIssuerDisplayEntity+Issuer.swift │ │ │ │ │ │ └── RawCredentialEntity+RawCredential.swift │ │ │ │ │ │ └── RawCredential.swift │ │ │ │ └── Module │ │ │ │ │ └── Container.swift │ │ │ └── BITCredentialSharedMocks │ │ │ │ ├── Credential+Mock.swift │ │ │ │ ├── CredentialClaim+Mock.swift │ │ │ │ ├── CredentialDisplay+Mock.swift │ │ │ │ ├── CredentialMetadata+Mock.swift │ │ │ │ ├── CredentialMetadataWrapper+Mock.swift │ │ │ │ ├── RawCredential+Mock.swift │ │ │ │ └── Resources │ │ │ │ ├── credential-coredata │ │ │ │ ├── credential-coredata-diploma.json │ │ │ │ ├── credential-coredata-locale-additional.json │ │ │ │ ├── credential-coredata-locale-app-default.json │ │ │ │ ├── credential-coredata-locale-empty.json │ │ │ │ ├── credential-coredata-locale-fallback.json │ │ │ │ ├── credential-coredata-locale-unsupported.json │ │ │ │ ├── credential-coredata-sample.json │ │ │ │ ├── credential-coredata-without-displays.json │ │ │ │ └── credential-coredata-without-raw-credential.json │ │ │ │ ├── raw-credentials │ │ │ │ ├── raw-credential-jwt-expired.txt │ │ │ │ ├── raw-credential-jwt.txt │ │ │ │ └── raw-credential.json │ │ │ │ ├── tergum-credential-metadata-empty.json │ │ │ │ ├── tergum-credential-metadata-unknown-algo.json │ │ │ │ └── tergum-credential-metadata.json │ │ └── Tests │ │ │ └── BITCredentialSharedTests │ │ │ └── Tests.swift │ ├── BITHome │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BITHome.xcscheme │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── BITHome │ │ │ │ ├── Module │ │ │ │ ├── Container.swift │ │ │ │ ├── HomeAssets.swift │ │ │ │ └── Strings.swift │ │ │ │ ├── Presentation │ │ │ │ ├── EmptyStates │ │ │ │ │ ├── CredentialsEmptyStateView.swift │ │ │ │ │ └── NoCredentialsEmptyStateView.swift │ │ │ │ ├── HomeComposerView.swift │ │ │ │ ├── HomeComposerViewModel.swift │ │ │ │ ├── HomeHostingController.swift │ │ │ │ ├── HomeModule.swift │ │ │ │ └── HomeRouter.swift │ │ │ │ └── Resources │ │ │ │ ├── HomeAssets.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── Home.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Home@2x.png │ │ │ │ │ └── Home@3x.png │ │ │ │ └── InAppLogo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── InAppLogo@2x.png │ │ │ │ │ └── inAppLogo@3x.png │ │ │ │ └── de.lproj │ │ │ │ └── Localizable.strings │ │ ├── Tests │ │ │ └── BITHomeTests │ │ │ │ ├── HomeComposerViewModelTests.swift │ │ │ │ └── HomeRouterMock.swift │ │ └── swiftgen.yml │ ├── BITInvitation │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ ├── package.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── BITInvitation.xcscheme │ │ │ │ └── BITInvitationScanner.xcscheme │ │ ├── Makefile │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ │ └── BITInvitation │ │ │ │ ├── Domain │ │ │ │ ├── Models │ │ │ │ │ └── InvitationType.swift │ │ │ │ └── UseCases │ │ │ │ │ ├── CheckInvitationUseCase.swift │ │ │ │ │ ├── Protocols │ │ │ │ │ ├── CheckInvitationUseCaseProtocol.swift │ │ │ │ │ └── ValidateCredentialOfferInvitationUrlUseCaseProtocol.swift │ │ │ │ │ └── ValidateCredentialOfferInvitationUrlUseCase.swift │ │ │ │ ├── Module │ │ │ │ ├── Assets.swift │ │ │ │ ├── Container.swift │ │ │ │ └── Strings.swift │ │ │ │ ├── Presentation │ │ │ │ ├── CameraPermission │ │ │ │ │ ├── CameraPermissionError.swift │ │ │ │ │ ├── CameraPermissionView.swift │ │ │ │ │ └── CameraPermissionViewModel.swift │ │ │ │ ├── Invitation │ │ │ │ │ ├── InvitationView.swift │ │ │ │ │ ├── InvitationViewModel.swift │ │ │ │ │ └── ScannerView.swift │ │ │ │ ├── InvitationModule.swift │ │ │ │ └── InvitationRouter.swift │ │ │ │ └── Resources │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── CameraPermission.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Kamerazugriff@2x.png │ │ │ │ │ └── Kamerazugriff@3x.png │ │ │ │ ├── CameraPermissionNotAllowed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Kamerazugriff-Negativ@2x.png │ │ │ │ │ └── Kamerazugriff-Negativ@3x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── EmptyWallet.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Emty Walle@2x.png │ │ │ │ │ └── Emty Walle@3x.png │ │ │ │ ├── Fehlender Nachweis.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Fehlender Nachweis.png │ │ │ │ │ ├── Fehlender Nachweis@2x.png │ │ │ │ │ └── Fehlender Nachweis@3x.png │ │ │ │ ├── NoInternet.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── noInternet@2x.png │ │ │ │ │ └── noInternet@3x.png │ │ │ │ ├── Unbekannten Aussteller.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Unbekannten Aussteller.png │ │ │ │ │ ├── Unbekannten Aussteller@2x.png │ │ │ │ │ └── Unbekannten Aussteller@3x.png │ │ │ │ ├── VerifierError.imageset │ │ │ │ │ ├── Abgebrochene Verifizierung.png │ │ │ │ │ ├── Abgebrochene Verifizierung@2x.png │ │ │ │ │ ├── Abgebrochene Verifizierung@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ └── WrongCredential.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Wallet initial copy 1@2x.png │ │ │ │ │ └── Wallet initial copy 1@3x.png │ │ │ │ └── de.lproj │ │ │ │ └── Localizable.strings │ │ ├── Tests │ │ │ └── BITInvitationTests │ │ │ │ ├── Domain │ │ │ │ ├── CheckInvitationTypeUseCaseTests.swift │ │ │ │ └── ValidateCredentialOfferInvitationUrlUseCaseTests.swift │ │ │ │ └── Presentation │ │ │ │ ├── CameraPermissionViewModelTests.swift │ │ │ │ ├── InvitationRouterMock.swift │ │ │ │ └── InvitationViewModelTests.swift │ │ └── swiftgen.yml │ ├── BITOnboarding │ │ ├── .gitignore │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BITOnboarding.xcscheme │ │ ├── Makefile │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── Sources │ │ │ └── BITOnboarding │ │ │ │ ├── Data │ │ │ │ └── UserDefaultsOnboardingSuccessRepository.swift │ │ │ │ ├── Domain │ │ │ │ ├── Repositories │ │ │ │ │ └── OnboardingSuccessRepositoryProtocol.swift │ │ │ │ └── UseCases │ │ │ │ │ ├── OnboardingSuccessUseCase.swift │ │ │ │ │ └── Protocols │ │ │ │ │ └── OnboardingSuccessUseCaseProtocol.swift │ │ │ │ ├── Module │ │ │ │ ├── Assets.swift │ │ │ │ ├── Container.swift │ │ │ │ └── Strings.swift │ │ │ │ ├── Presentation │ │ │ │ ├── OnboardingFlowModule.swift │ │ │ │ ├── OnboardingFlowView.swift │ │ │ │ ├── OnboardingFlowViewModel.swift │ │ │ │ ├── OnboardingPagerView.swift │ │ │ │ ├── OnboardingPinCodeView.swift │ │ │ │ ├── OnboardingRouter.swift │ │ │ │ └── Steps │ │ │ │ │ ├── BiometricStepView.swift │ │ │ │ │ ├── ConfirmationPinCodeStepView.swift │ │ │ │ │ ├── OnboardingStepView.swift │ │ │ │ │ ├── PinCodeStepView.swift │ │ │ │ │ ├── PrivacyOnboardingStepView.swift │ │ │ │ │ ├── StepViewHeader.swift │ │ │ │ │ └── UndefinedBiometricStepView.swift │ │ │ │ └── Resources │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── Biometrics.imageset │ │ │ │ │ ├── Biometrics@2x.png │ │ │ │ │ ├── Biometrics@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── QRCode.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── QRCode@2x.png │ │ │ │ │ └── QRCode@3x.png │ │ │ │ ├── Security.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Security@2x.png │ │ │ │ │ └── Security@3x.png │ │ │ │ └── Start.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Start@2x.png │ │ │ │ │ └── Start@3x.png │ │ │ │ └── de.lproj │ │ │ │ └── Localizable.strings │ │ ├── Tests │ │ │ └── BITOnboardingTests │ │ │ │ └── Presentation │ │ │ │ └── OnboardingFlowViewModelTests.swift │ │ └── swiftgen.yml │ ├── BITPresentation │ │ ├── .swiftpm │ │ │ └── xcode │ │ │ │ ├── package.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── BITPresentation.xcscheme │ │ ├── Makefile │ │ ├── Package.resolved │ │ ├── Package.swift │ │ ├── Sources │ │ │ ├── BITPresentation │ │ │ │ ├── Data │ │ │ │ │ ├── Endpoints │ │ │ │ │ │ └── PresentationEndpoint.swift │ │ │ │ │ ├── Repositories │ │ │ │ │ │ └── PresentationRepository.swift │ │ │ │ │ └── Utils │ │ │ │ │ │ └── PresentationJWTGenerator.swift │ │ │ │ ├── Domain │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── CompatibleCredential.swift │ │ │ │ │ │ ├── PresentationMetadata.swift │ │ │ │ │ │ ├── PresentationRequestBody.swift │ │ │ │ │ │ ├── RequestObject.swift │ │ │ │ │ │ └── Verifier.swift │ │ │ │ │ ├── Repositories │ │ │ │ │ │ └── PresentationRepositoryProtocol.swift │ │ │ │ │ ├── UseCases │ │ │ │ │ │ ├── Implementations │ │ │ │ │ │ │ ├── DenyPresentationUseCase.swift │ │ │ │ │ │ │ ├── FetchRequestObjectUseCase.swift │ │ │ │ │ │ │ ├── GetCompatibleCredentialsUseCase.swift │ │ │ │ │ │ │ └── SubmitPresentationUseCase.swift │ │ │ │ │ │ └── Protocols │ │ │ │ │ │ │ ├── DenyPresentationUseCaseProtocol.swift │ │ │ │ │ │ │ ├── FetchRequestObjectUseCaseProtocol.swift │ │ │ │ │ │ │ ├── GeneratePresentationMetadataUseCaseProtocol.swift │ │ │ │ │ │ │ ├── GetCompatibleCredentialsUseCaseProtocol.swift │ │ │ │ │ │ │ └── SubmitPresentationUseCaseProtocol.swift │ │ │ │ │ └── Utils │ │ │ │ │ │ └── PresentationJWTGeneratorProtocol.swift │ │ │ │ ├── Extensions │ │ │ │ │ └── ActivityVerifier+RequestObject.swift │ │ │ │ ├── Module │ │ │ │ │ ├── Assets.swift │ │ │ │ │ ├── Container.swift │ │ │ │ │ └── Strings.swift │ │ │ │ ├── Presentation │ │ │ │ │ ├── PresentationCredentialList │ │ │ │ │ │ ├── CompatibleCredentialListView.swift │ │ │ │ │ │ ├── PresentationCredentialListView.swift │ │ │ │ │ │ └── PresentationCredentialListViewModel.swift │ │ │ │ │ ├── PresentationRequestMetadata │ │ │ │ │ │ ├── PresentationAttributeListView.swift │ │ │ │ │ │ ├── PresentationRequestDeclineView.swift │ │ │ │ │ │ ├── PresentationRequestHeaderView.swift │ │ │ │ │ │ ├── PresentationRequestMetadataView.swift │ │ │ │ │ │ └── PresentationRequestMetadataViewModel.swift │ │ │ │ │ └── PresentationResult │ │ │ │ │ │ ├── PresentationErrorView.swift │ │ │ │ │ │ ├── PresentationErrorViewModel.swift │ │ │ │ │ │ ├── PresentationInvalidErrorView.swift │ │ │ │ │ │ ├── PresentationResultFieldListView.swift │ │ │ │ │ │ ├── PresentationResultView.swift │ │ │ │ │ │ └── PresentationResultViewModel.swift │ │ │ │ └── Resources │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── qrCode.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── qr_code@2x.png │ │ │ │ │ │ └── qr_code@3x.png │ │ │ │ │ └── wallet.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── wallet@2x.png │ │ │ │ │ │ └── wallet@3x.png │ │ │ │ │ └── de.lproj │ │ │ │ │ └── Localizable.strings │ │ │ └── BITPresentationMocks │ │ │ │ ├── Mocks.swift │ │ │ │ └── Resources │ │ │ │ ├── presentation-request-body.json │ │ │ │ ├── request-object-diploma.json │ │ │ │ ├── request-object-multipass-no-metadata.json │ │ │ │ ├── request-object-multipass-plus-extra-field.json │ │ │ │ ├── request-object-multipass.json │ │ │ │ └── request-object-without-fields.json │ │ ├── Tests │ │ │ └── BITPresentationTests │ │ │ │ ├── Data │ │ │ │ └── PresentationRepositoryTests.swift │ │ │ │ ├── Domain │ │ │ │ ├── PresentationJWTGeneratorTests.swift │ │ │ │ ├── PresentationRequestBodyTests.swift │ │ │ │ └── UseCases │ │ │ │ │ ├── DenyPresentationUseCaseTests.swift │ │ │ │ │ ├── FetchRequestObjectUseCaseTests.swift │ │ │ │ │ ├── GenerateVpJWTUseCaseTests.swift │ │ │ │ │ ├── GetCompatibleCredentialsUseCaseTests.swift │ │ │ │ │ └── SubmitPresentationUseCaseTests.swift │ │ │ │ ├── Model │ │ │ │ └── RequestObjectTests.swift │ │ │ │ └── Presentation │ │ │ │ ├── PresentationCredentialListViewModelTests.swift │ │ │ │ ├── PresentationErrorViewModelTests.swift │ │ │ │ ├── PresentationRequestDetailsViewModelTests.swift │ │ │ │ └── PresentationRequestMetadataViewModelTests.swift │ │ └── swiftgen.yml │ └── BITSettings │ │ ├── .gitignore │ │ ├── .swiftpm │ │ └── xcode │ │ │ ├── package.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── BITSettings.xcscheme │ │ ├── Makefile │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ └── BITSettings │ │ │ ├── Data │ │ │ └── Repository │ │ │ │ └── AnalyticsRepository.swift │ │ │ ├── Domain │ │ │ ├── Model │ │ │ │ └── PackageDependency.swift │ │ │ ├── Repositories │ │ │ │ └── AnalyticsRepositoryProtocol.swift │ │ │ └── UseCases │ │ │ │ ├── FetchAnalyticStatusUseCase.swift │ │ │ │ ├── FetchPackagesUseCase.swift │ │ │ │ ├── Protocols │ │ │ │ ├── FetchAnalyticStatusUseCaseProtocol.swift │ │ │ │ ├── FetchPackagesUseCaseProtocol.swift │ │ │ │ └── UpdateAnalyticStatusUseCaseProtocol.swift │ │ │ │ └── UpdateAnalyticStatusUseCase.swift │ │ │ ├── Module │ │ │ ├── Assets.swift │ │ │ ├── Container.swift │ │ │ └── Strings.swift │ │ │ ├── Presentation │ │ │ ├── DataInformation │ │ │ │ └── DataInformationView.swift │ │ │ ├── Impressum │ │ │ │ ├── ImpressumView.swift │ │ │ │ └── ImpressumViewModel.swift │ │ │ ├── Licences │ │ │ │ ├── LicenceDetailView.swift │ │ │ │ ├── LicencesListView.swift │ │ │ │ └── LicencesListViewModel.swift │ │ │ ├── Menu │ │ │ │ ├── MenuCell.swift │ │ │ │ ├── MenuComposerView.swift │ │ │ │ ├── MenuHeader.swift │ │ │ │ ├── MenuSection.swift │ │ │ │ ├── SecondaryMenuCell.swift │ │ │ │ ├── SideNoteMenuCell.swift │ │ │ │ └── ToggleMenuCell.swift │ │ │ ├── Privacy │ │ │ │ ├── PrivacyView.swift │ │ │ │ └── PrivacyViewModel.swift │ │ │ └── VerificationInstruction │ │ │ │ └── VerificationInstructionView.swift │ │ │ └── Resources │ │ │ ├── Assets.xcassets │ │ │ ├── Contents.json │ │ │ ├── Impresum.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Impresum@2x.png │ │ │ │ └── Impresum@3x.png │ │ │ ├── Lizenzen.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Lizenzen 1@2x.png │ │ │ │ └── Lizenzen 1@3x.png │ │ │ ├── confederation.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── confederation@2x.png │ │ │ │ └── confederation@3x.png │ │ │ ├── verification.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── verification_instruction@2x.png │ │ │ │ └── verification_instruction@3x.png │ │ │ └── verificationQrCode.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── verification_qrcode@2x.png │ │ │ │ └── verification_qrcode@3x.png │ │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ │ └── package-list.json │ │ ├── Tests │ │ └── BITSettingsTests │ │ │ ├── Domain │ │ │ ├── FetchAnalyticStatusUseCaseTests.swift │ │ │ ├── FetchPackagesUseCaseTests.swift │ │ │ └── UpdateAnalyticStatusUseCaseTests.swift │ │ │ └── Presentation │ │ │ ├── ImpressumViewModelTests.swift │ │ │ ├── LicencesListViewModelTests.swift │ │ │ └── PrivacyViewModelTests.swift │ │ └── swiftgen.yml └── Platforms │ ├── BITAnalytics │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── eIDAnalytics.xcscheme │ │ │ └── eIDAnalyticsTests.xcscheme │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ ├── BITAnalytics │ │ │ ├── Analytics.swift │ │ │ ├── Container.swift │ │ │ ├── Event.swift │ │ │ ├── Protocols │ │ │ │ ├── Loggable.swift │ │ │ │ ├── PrivacySettable.swift │ │ │ │ ├── Provider.swift │ │ │ │ └── ProviderRegisterable.swift │ │ │ └── Providers │ │ │ │ └── DynatraceProvider.swift │ │ └── BITAnalyticsMocks │ │ │ ├── MockEvent.swift │ │ │ ├── MockProvider.swift │ │ │ └── OtherMockProvider.swift │ └── Tests │ │ └── BITAnalyticsTests │ │ └── AnalyticsTests.swift │ ├── BITCore │ ├── .gitignore │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── Sources │ │ ├── BITCore │ │ │ ├── Extensions │ │ │ │ ├── Date+Extensions.swift │ │ │ │ ├── DateFormatter+Extensions.swift │ │ │ │ ├── JSONSerialization+Extensions.swift │ │ │ │ ├── MainActor+Extensions.swift │ │ │ │ ├── Notifications+Extensions.swift │ │ │ │ ├── String+Extensions.swift │ │ │ │ └── URL+Extensions.swift │ │ │ ├── Helpers │ │ │ │ └── LocaleHelper.swift │ │ │ ├── Models │ │ │ │ ├── CodableValue.swift │ │ │ │ ├── StructCopyable.swift │ │ │ │ └── ValueType.swift │ │ │ ├── Module │ │ │ │ ├── Container.swift │ │ │ │ ├── CoreAssets.swift │ │ │ │ └── Strings.swift │ │ │ ├── Resources │ │ │ │ ├── CoreAssets.xcassets │ │ │ │ │ └── Contents.json │ │ │ │ └── de.lproj │ │ │ │ │ └── Localizable.strings │ │ │ ├── Services │ │ │ │ └── ProcessInfoService.swift │ │ │ └── StateMachine │ │ │ │ ├── AnyPublisher+Extensions.swift │ │ │ │ ├── CustomAsyncPublisher.swift │ │ │ │ ├── SendablePublisher.swift │ │ │ │ └── StateMachine.swift │ │ └── BITTestingCore │ │ │ ├── JSONDecoder+Extensions.swift │ │ │ ├── Mockable.swift │ │ │ ├── SecKeyTestsHelper.swift │ │ │ └── TestingError.swift │ ├── Tests │ │ └── BITCoreTests │ │ │ ├── CodableValueTests.swift │ │ │ └── StringExtensionsTests.swift │ └── swiftgen.yml │ ├── BITCrypto │ ├── .swiftpm │ │ └── xcode │ │ │ └── package.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── BITCrypto │ │ │ ├── Encrypters │ │ │ ├── AESEncrypter.swift │ │ │ └── Encryptable.swift │ │ │ ├── Extensions │ │ │ ├── Data+Extensions.swift │ │ │ ├── Digest+Extensions.swift │ │ │ └── String+Extensions.swift │ │ │ ├── Hashers │ │ │ ├── Hashable.swift │ │ │ ├── SHA256Hasher.swift │ │ │ ├── SHA384Hasher.swift │ │ │ └── SHA512Hasher.swift │ │ │ └── Utils │ │ │ ├── KeyPair.swift │ │ │ ├── SymmetricKeyProtocol.swift │ │ │ └── SymmetricKeyUtils.swift │ └── Tests │ │ └── BITCryptoTests │ │ ├── AESEncrypterTests.swift │ │ ├── DataTests.swift │ │ ├── SHAHasherTests.swift │ │ └── Utils │ │ └── Data+Extensions.swift │ ├── BITDataStore │ ├── .swiftpm │ │ └── xcode │ │ │ └── package.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── BITDataStore │ │ │ ├── CoreData │ │ │ ├── Entities │ │ │ │ ├── ActivityEntity.swift │ │ │ │ ├── ActivityVerifierCredentialClaimDisplayEntity.swift │ │ │ │ ├── ActivityVerifierCredentialClaimEntity.swift │ │ │ │ ├── ActivityVerifierEntity.swift │ │ │ │ ├── CredentialClaimDisplayEntity.swift │ │ │ │ ├── CredentialClaimEntity.swift │ │ │ │ ├── CredentialDisplayEntity.swift │ │ │ │ ├── CredentialEntity.swift │ │ │ │ ├── CredentialIssuerDisplayEntity.swift │ │ │ │ └── CredentialRawEntity.swift │ │ │ ├── Extensions │ │ │ │ ├── NSManagedObject.swift │ │ │ │ └── NSManagedObjectContext+Extensions.swift │ │ │ ├── Protocols │ │ │ │ └── CoreDataStoreProtocol.swift │ │ │ ├── Resources │ │ │ │ └── pilotWallet.xcdatamodeld │ │ │ │ │ ├── .xccurrentversion │ │ │ │ │ ├── SwissWallet.xcdatamodel │ │ │ │ │ └── contents │ │ │ │ │ ├── SwissWalletV1.6.xcdatamodel │ │ │ │ │ └── contents │ │ │ │ │ └── SwissWalletV1.7.xcdatamodel │ │ │ │ │ └── contents │ │ │ └── Stores │ │ │ │ ├── CoreDataManager.swift │ │ │ │ ├── CoreDataStore.swift │ │ │ │ ├── DataStoreClearingMode.swift │ │ │ │ └── InMemoryCoreDataStore.swift │ │ │ ├── DataStoreError.swift │ │ │ └── Module │ │ │ └── Container.swift │ └── Tests │ │ └── BITDataStoreTests │ │ └── BITDataStoreTests.swift │ ├── BITDeeplink │ ├── Makefile │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── BITDeeplink │ │ │ ├── DeeplinkError.swift │ │ │ ├── DeeplinkManager.swift │ │ │ ├── DeeplinkRoute.swift │ │ │ ├── Models │ │ │ └── RootDeeplinkRoute.swift │ │ │ └── Module │ │ │ └── Container.swift │ └── Tests │ │ └── BITDeeplinkTests │ │ └── BITDeeplinkTests.swift │ ├── BITLocalAuthentication │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── package.xcworkspace │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Package.resolved │ ├── Package.swift │ ├── Sources │ │ ├── BITLocalAuthentication │ │ │ ├── LAContextProtocol.swift │ │ │ ├── Model │ │ │ │ ├── LocalAuthenticationPolicy.swift │ │ │ │ └── NoInteractionLAContext.swift │ │ │ └── Utils │ │ │ │ ├── LocalAuthenticationPolicyValidator.swift │ │ │ │ └── Protocols │ │ │ │ └── LocalAuthenticationPolicyValidatorProtocol.swift │ │ └── BITLocalAuthenticationMocks │ │ │ └── Model │ │ │ └── FakeLAContext.swift │ └── Tests │ │ └── BITLocalAuthenticationTests │ │ └── LocalAuthenticationPolicyValidatorTests.swift │ ├── BITNavigation │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── BITNetworkingTests.xcscheme │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── Sources │ │ └── BITNavigation │ │ │ ├── ClosableRoutes.swift │ │ │ ├── Extensions │ │ │ ├── UIApplication+Extensions.swift │ │ │ └── UIViewController+Extensions.swift │ │ │ ├── OpeningStyle │ │ │ ├── ModalOpeningStyle.swift │ │ │ ├── NavigationPushOpeningStyle.swift │ │ │ └── OpeningStyle.swift │ │ │ ├── Router.swift │ │ │ └── RouterProtocol.swift │ └── Tests │ │ └── BITNavigationTests │ │ └── BITNavigationTests.swift │ ├── BITNetworking │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── BITNetworkingTests.xcscheme │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── Sources │ │ └── BITNetworking │ │ │ ├── Extensions │ │ │ ├── Response+Extensions.swift │ │ │ └── TargetType+Extensions.swift │ │ │ ├── Helpers │ │ │ ├── CertificateLoader.swift │ │ │ └── NetworkHeader.swift │ │ │ ├── Managers │ │ │ └── WildcardServerTrustManager.swift │ │ │ ├── NetworkContainer.swift │ │ │ ├── NetworkError.swift │ │ │ ├── NetworkErrorStatus.swift │ │ │ ├── NetworkMonitor.swift │ │ │ └── NetworkService.swift │ └── Tests │ │ └── BITNetworkingTests │ │ └── BITNetworkingTests.swift │ ├── BITQRScanner │ ├── .swiftpm │ │ └── xcode │ │ │ ├── package.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── BITQRScanner.xcscheme │ ├── Makefile │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── BITQRScanner │ │ │ ├── CameraPermissionStatus.swift │ │ │ ├── Module │ │ │ └── Assets.swift │ │ │ ├── QRScannerConfiguration.swift │ │ │ ├── QRScannerDelegate.swift │ │ │ ├── QRScannerError.swift │ │ │ ├── QRScannerView.swift │ │ │ ├── QRScannerViewController+MetadataOutput.swift │ │ │ ├── QRScannerViewController+VideoOutput.swift │ │ │ ├── QRScannerViewController.swift │ │ │ ├── Resources │ │ │ └── Assets.xcassets │ │ │ │ ├── Contents.json │ │ │ │ └── Scanner.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Scanner@2x.png │ │ │ │ └── Scanner@3x.png │ │ │ └── UIImage+Extensions.swift │ ├── Tests │ │ └── BITQRScannerTests │ │ │ └── QRScannerTests.swift │ └── swiftgen.yml │ ├── BITSdJWT │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── package.xcworkspace │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── README │ ├── Sources │ │ ├── BITSdJWT │ │ │ ├── Extensions │ │ │ │ ├── JWSHeader+Extensions.swift │ │ │ │ ├── SignatureAlgorithm+Extensions.swift │ │ │ │ └── String+Extensions.swift │ │ │ ├── JWTDecoder.swift │ │ │ ├── JWTManageable.swift │ │ │ ├── JWTManager.swift │ │ │ ├── Model │ │ │ │ ├── JWK.swift │ │ │ │ ├── JWT.swift │ │ │ │ ├── JWTAlgorithm.swift │ │ │ │ ├── JWTPayload.swift │ │ │ │ ├── SdJWT.swift │ │ │ │ ├── SdJWTClaim.swift │ │ │ │ ├── SdJWTCredentialStatus.swift │ │ │ │ ├── SdJWTDigest.swift │ │ │ │ ├── SdJWTVc.swift │ │ │ │ └── StringDigest.swift │ │ │ ├── SdJWTDecoder.swift │ │ │ └── SdJWTDecoderProtocol.swift │ │ └── BITSdJWTMocks │ │ │ ├── JWT+Mock.swift │ │ │ ├── JWTPayload+Mock.swift │ │ │ ├── Resources │ │ │ ├── JWTPayloads │ │ │ │ └── jwt-payload.json │ │ │ ├── JWTs │ │ │ │ ├── jwt-invalid-status.txt │ │ │ │ ├── jwt-valid-status.txt │ │ │ │ └── jwt-valid.txt │ │ │ └── SdJWTs │ │ │ │ ├── sd-jwt-claim-array.json │ │ │ │ ├── sd-jwt-claim-bool.json │ │ │ │ ├── sd-jwt-claim-dictionary.json │ │ │ │ ├── sd-jwt-claim-double.json │ │ │ │ ├── sd-jwt-claim-int.json │ │ │ │ ├── sd-jwt-claim-invalid.txt │ │ │ │ ├── sd-jwt-claim-string.json │ │ │ │ ├── sd-jwt-diploma.json │ │ │ │ ├── sd-jwt-id.json │ │ │ │ ├── sd-jwt-no-disclosures.json │ │ │ │ ├── sd-jwt-sample-expired.json │ │ │ │ ├── sd-jwt-sample-invalid-disclosure.json │ │ │ │ ├── sd-jwt-sample-no-mandatory-name.json │ │ │ │ └── sd-jwt-sample.json │ │ │ └── SdJWT+Mock.swift │ └── Tests │ │ └── BITSdJWTTests │ │ ├── JWTManagerTests.swift │ │ ├── JWTTests.swift │ │ └── SdJWTTests.swift │ ├── BITSecurity │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── BITSecurity.xcscheme │ │ │ └── BITSecurityTests.xcscheme │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── BITSecurity │ │ │ ├── Container.swift │ │ │ ├── Jailbreak │ │ │ ├── JailbreakDetector.swift │ │ │ └── UI │ │ │ │ └── JailbreakView.swift │ │ │ ├── Module │ │ │ ├── Assets.swift │ │ │ └── Strings.swift │ │ │ └── Resources │ │ │ ├── Assets.xcassets │ │ │ ├── Contents.json │ │ │ └── Jailbreak.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Jailbreak@2x.png │ │ │ │ └── Jailbreak@3x.png │ │ │ └── de.lproj │ │ │ └── Localizable.strings │ ├── Tests │ │ └── BITSecurityTests │ │ │ └── Tests.swift │ └── swiftgen.yml │ ├── BITTheming │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── BITTheming.xcscheme │ │ │ └── ThemingKitTests.xcscheme │ ├── Makefile │ ├── Package.swift │ ├── Sources │ │ └── BITTheming │ │ │ ├── Appearance │ │ │ └── BITAppearance.swift │ │ │ ├── Extensions │ │ │ ├── CGFloat+CornerRadius.swift │ │ │ ├── CGFloat+Padding.swift │ │ │ ├── Color+Hex.swift │ │ │ ├── Image+Extensions.swift │ │ │ ├── TimeInterval+Animations.swift │ │ │ ├── UIFont.swift │ │ │ └── View+Extensions.swift │ │ │ ├── GeometryEffects │ │ │ └── ShakeEffect.swift │ │ │ ├── Module │ │ │ ├── Fonts.swift │ │ │ ├── Strings.swift │ │ │ └── ThemingAssets.swift │ │ │ ├── Resources │ │ │ ├── Fonts │ │ │ │ └── NotoSans │ │ │ │ │ ├── NotoSans-Black.ttf │ │ │ │ │ ├── NotoSans-BlackItalic.ttf │ │ │ │ │ ├── NotoSans-Bold.ttf │ │ │ │ │ ├── NotoSans-BoldItalic.ttf │ │ │ │ │ ├── NotoSans-ExtraBold.ttf │ │ │ │ │ ├── NotoSans-ExtraBoldItalic.ttf │ │ │ │ │ ├── NotoSans-ExtraLight.ttf │ │ │ │ │ ├── NotoSans-ExtraLightItalic.ttf │ │ │ │ │ ├── NotoSans-Italic.ttf │ │ │ │ │ ├── NotoSans-Light.ttf │ │ │ │ │ ├── NotoSans-LightItalic.ttf │ │ │ │ │ ├── NotoSans-Medium.ttf │ │ │ │ │ ├── NotoSans-MediumItalic.ttf │ │ │ │ │ ├── NotoSans-Regular.ttf │ │ │ │ │ ├── NotoSans-SemiBold.ttf │ │ │ │ │ ├── NotoSans-SemiBoldItalic.ttf │ │ │ │ │ ├── NotoSans-Thin.ttf │ │ │ │ │ └── NotoSans-ThinItalic.ttf │ │ │ ├── ThemingAssets.xcassets │ │ │ │ ├── Colors │ │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Background.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Gray.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray2.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray3.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray4.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Gray5.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Green.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Green2.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Orange.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Orange2.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Petrol.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Petrol2.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Petrol3.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Primary.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── PrimaryReversed.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Red.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Red2.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Red3.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Secondary.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── SecondaryReversed.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── Images │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── NoInternet.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── KeinInternet 1@2x.png │ │ │ │ │ └── KeinInternet 1@3x.png │ │ │ │ │ ├── federal-office-logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── federal-logo.png │ │ │ │ │ ├── logo.png │ │ │ │ │ └── logo@2x.png │ │ │ │ │ └── in-app-logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Logo Image@2x.png │ │ │ │ │ └── Logo Image@3x.png │ │ │ └── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ViewModifiers │ │ │ ├── EmptyStateViewModifier.swift │ │ │ ├── NavigationBackButtonDisplayModeModifier.swift │ │ │ ├── OnFirstAppear.swift │ │ │ ├── PrimaryViewModifier.swift │ │ │ └── SecondaryViewModifier.swift │ │ │ └── Views │ │ │ ├── Badge.swift │ │ │ ├── Buttons │ │ │ ├── AsyncButton.swift │ │ │ ├── ButtonPlaygrounds.swift │ │ │ ├── ButtonStyle.swift │ │ │ ├── PrimaryButtonConfiguration.swift │ │ │ ├── PrimaryButtonStyle.swift │ │ │ ├── PrimaryProminentButtonStyle.swift │ │ │ ├── SecondaryButtonConfiguration.swift │ │ │ └── SecondaryButtonStyle.swift │ │ │ ├── Cells │ │ │ └── KeyValueCell.swift │ │ │ ├── DisclosureIndicator.swift │ │ │ ├── EdgeBorder.swift │ │ │ ├── Effects │ │ │ └── VisualEffectView.swift │ │ │ ├── EmptyState │ │ │ └── EmptyStateView.swift │ │ │ ├── KeyPad │ │ │ ├── KeyPadButton.swift │ │ │ ├── KeyPadKey.swift │ │ │ ├── KeyPadRow.swift │ │ │ └── KeyPads │ │ │ │ └── KeyPad.swift │ │ │ ├── LinkText.swift │ │ │ ├── Pager.swift │ │ │ ├── StatusLabelStyle.swift │ │ │ ├── TitleAndIconReversedLabelStyle.swift │ │ │ └── Toolbars │ │ │ └── DefaultToolbar.swift │ ├── Tests │ │ └── BITThemingTests │ │ │ └── Tests.swift │ └── swiftgen.yml │ └── BITVault │ ├── .gitignore │ ├── Makefile │ ├── Package.resolved │ ├── Package.swift │ ├── README.md │ ├── Sources │ └── BITVault │ │ ├── Extensions │ │ ├── SecAccessControl+Extensions.swift │ │ └── SecKey+Data.swift │ │ ├── Managers │ │ ├── EncryptionManager.swift │ │ ├── KeyManager.swift │ │ └── SecretManager.swift │ │ ├── Protocols │ │ ├── EncryptionManagerProtocol.swift │ │ ├── KeyManagerProtocol.swift │ │ └── SecretManagerProtocol.swift │ │ ├── Query │ │ ├── Query.swift │ │ └── QueryBuilder.swift │ │ ├── VaultAlgorithm.swift │ │ ├── VaultError.swift │ │ └── VaultOption.swift │ └── Tests │ └── BITVaultTests │ └── VaultTests.swift ├── Package.swift ├── Project ├── packages.yml ├── project.yml ├── schemes.yml └── targets.yml ├── README.md ├── Resources ├── downloadOnAppStoreLogo.png └── pilotWalletLogo.png ├── SECURITY.md ├── Scripts ├── format_generated_files.sh ├── swift_package_list.sh ├── swiftformat.sh ├── swiftformat_generated_files.sh ├── swiftlint.sh └── xcode_formatting.sh ├── TestPlans ├── FullTestPlan.xctestplan ├── UITestPlan.xctestplan └── UnitTestPlan.xctestplan ├── pilotWallet ├── Core │ ├── AppDelegate.swift │ ├── Application.swift │ ├── Config │ │ └── BITServerTrustManager.swift │ ├── Container.swift │ ├── RootRouter.swift │ ├── Runners │ │ ├── ApplicationRunnerProtocol.swift │ │ └── UserInactivityRunner.swift │ ├── SceneDelegate.swift │ └── Scenes │ │ ├── AppScene.swift │ │ ├── JailbreakScene.swift │ │ ├── NoDevicePinCodeScene.swift │ │ ├── OnboardingScene.swift │ │ ├── SceneManagerProtocol.swift │ │ └── SplashScreenScene.swift ├── PrivacyInfo.xcprivacy ├── Resources │ ├── Assets.swift │ ├── Assets.xcassets │ │ ├── AppIcon-DEV.appiconset │ │ │ ├── 1024x1024_DEVpilotWallet_AppIcon.png │ │ │ └── Contents.json │ │ ├── AppIcon-REF.appiconset │ │ │ ├── 1024x1024_REFpilotWallet_AppIcon.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 1024x1024_pilotWallet.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Logo.imageset │ │ │ ├── Contents.json │ │ │ ├── Logo.png │ │ │ ├── Logo@2x.png │ │ │ └── Logo@3x.png │ │ ├── LogoExtended.imageset │ │ │ ├── Contents.json │ │ │ ├── Logo Image.png │ │ │ ├── Logo Image@2x.png │ │ │ └── Logo Image@3x.png │ │ └── accentColor.colorset │ │ │ └── Contents.json │ ├── Certificates │ │ ├── DigiCertGlobalRootG2.der │ │ ├── QuoVadisRootCA2G3.der │ │ └── qvrca2g3.cer │ ├── DangerProxy.swift │ ├── Plist.swift │ └── de.lproj │ │ └── InfoPlist.strings ├── SplashScreen.swift ├── SplashScreenHostingController.swift ├── SplashScreenModule.swift └── main.swift ├── pilotWalletTests ├── ApplicationRunners │ └── UserInactivityRunner.swift ├── Scenes │ ├── AppSceneTests.swift │ ├── NoDevicePinCodeSceneTests.swift │ ├── OnboardingSceneTests.swift │ ├── RouterMock.swift │ └── SplashScreenSceneTests.swift └── Tests.swift ├── pilotWalletUITests └── LauncherUITests.swift ├── project.yml └── swiftgen.yml /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /.slather.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/.slather.yml -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Brewfile -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Brewfile.lock.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Danger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Danger.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Makefile -------------------------------------------------------------------------------- /Modules/Features/BITActivity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/.gitignore -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Makefile -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Package.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/README.md -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Data/Repositories/CoreDataActivityRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Data/Repositories/CoreDataActivityRepository.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Domain/Models/Activity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Domain/Models/Activity.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Domain/Models/ActivityType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Domain/Models/ActivityType.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Domain/Models/ActivityVerifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Domain/Models/ActivityVerifier.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Presentation/ActivityCell/ActivityCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Presentation/ActivityCell/ActivityCellView.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Presentation/Badge/ActivityTypeBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Presentation/Badge/ActivityTypeBadge.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Presentation/Badge/DefaultBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Presentation/Badge/DefaultBadge.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Presentation/LastActivity/LastActivityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Presentation/LastActivity/LastActivityView.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivity/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivity/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivityMocks/Activity+Mocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivityMocks/Activity+Mocks.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivityMocks/Resources/sample-activity-presentation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivityMocks/Resources/sample-activity-presentation.json -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Sources/BITActivityMocks/Resources/sample-activity-receive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Sources/BITActivityMocks/Resources/sample-activity-receive.json -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Tests/BITActivityTests/Domain/Models/ActivityUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Tests/BITActivityTests/Domain/Models/ActivityUnitTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/Tests/BITActivityTests/Presentation/ActivityCellViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/Tests/BITActivityTests/Presentation/ActivityCellViewModelTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITActivity/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITActivity/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/.swiftpm/xcode/xcshareddata/xcschemes/BITAppAuth.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/.swiftpm/xcode/xcshareddata/xcschemes/BITAppAuth.xcscheme -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/.swiftpm/xcode/xcshareddata/xcschemes/BITAppAuthTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/.swiftpm/xcode/xcshareddata/xcschemes/BITAppAuthTests.xcscheme -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Makefile -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Package.resolved -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Package.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/README.md -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Data/Repository/LoginRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Data/Repository/LoginRepository.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Data/Repository/SecretsRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Data/Repository/SecretsRepository.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Data/Repository/UserDefaultBiometricRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Data/Repository/UserDefaultBiometricRepository.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Errors/AuthError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Errors/AuthError.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Model/AuthMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Model/AuthMethod.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Model/BiometricStepType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Model/BiometricStepType.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Model/PinCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Model/PinCode.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Repositories/LoginRepositoryProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Repositories/LoginRepositoryProtocol.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Repositories/PepperRepositoryProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Repositories/PepperRepositoryProtocol.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/ContextManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/ContextManager.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/PepperService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/PepperService.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/PinCodeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/PinCodeManager.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/Protocols/ContextManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/Protocols/ContextManagerProtocol.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/Protocols/PepperServiceProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/Protocols/PepperServiceProtocol.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/Protocols/PinCodeManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/Protocols/PinCodeManagerProtocol.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/UniquePassphraseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Domain/Utils/UniquePassphraseManager.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Helpers/AuthAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Helpers/AuthAssets.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Helpers/AuthenticationAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Helpers/AuthenticationAssets.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Managers/AuthManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Managers/AuthManager.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Module/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Module/Assets.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginHostingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginHostingController.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginModule.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginRouter.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginRoutes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginRoutes.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginUseCases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginUseCases.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginView.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Login/LoginViewModel.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Registration/PinCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Registration/PinCodeView.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Setup/SetupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Setup/SetupView.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Views/PinCodeDotsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Presentation/Views/PinCodeDotsView.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Sources/BITAppAuth/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Sources/BITAppAuth/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Data/LockWalletRepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Data/LockWalletRepositoryTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Data/LoginRepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Data/LoginRepositoryTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Data/PepperRepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Data/PepperRepositoryTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Data/UniquePassphraseRepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Data/UniquePassphraseRepositoryTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/HasDevicePinUseCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/HasDevicePinUseCaseTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/LockWalletUseCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/LockWalletUseCaseTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/RegisterPinCodeUseCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/RegisterPinCodeUseCaseTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/UnlockWalletUseCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/UnlockWalletUseCaseTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/UpdatePinCodeUseCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/UpdatePinCodeUseCaseTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/ValidatePinCodeUseCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/UseCases/ValidatePinCodeUseCaseTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/Utils/ContextManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/Utils/ContextManagerTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/Utils/PepperServiceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/Utils/PepperServiceTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/Utils/PinCodeManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/Utils/PinCodeManagerTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/Utils/UniquePassphraseManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Domain/Utils/UniquePassphraseManagerTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Presentation/LoginRouterMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Presentation/LoginRouterMock.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Presentation/LoginViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/Tests/BITAppAuthTests/Presentation/LoginViewModelTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppAuth/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppAuth/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/.swiftpm/xcode/xcshareddata/xcschemes/BITAppVersion.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/.swiftpm/xcode/xcshareddata/xcschemes/BITAppVersion.xcscheme -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/Package.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/README.md -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/Sources/BITAppVersion/Data/BundleAppVersionRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/Sources/BITAppVersion/Data/BundleAppVersionRepository.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/Sources/BITAppVersion/Domain/AppVersionError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/Sources/BITAppVersion/Domain/AppVersionError.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/Sources/BITAppVersion/Domain/Model/AppVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/Sources/BITAppVersion/Domain/Model/AppVersion.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/Sources/BITAppVersion/Domain/Model/BuildNumber.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/Sources/BITAppVersion/Domain/Model/BuildNumber.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/Sources/BITAppVersion/Domain/UseCases/GetAppVersionUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/Sources/BITAppVersion/Domain/UseCases/GetAppVersionUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/Sources/BITAppVersion/Domain/UseCases/GetBuildNumberUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/Sources/BITAppVersion/Domain/UseCases/GetBuildNumberUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/Sources/BITAppVersion/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/Sources/BITAppVersion/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/Sources/BITAppVersion/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/Sources/BITAppVersion/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Features/BITAppVersion/Tests/BITAppVersionTests/Domain/Models/AppVersionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITAppVersion/Tests/BITAppVersionTests/Domain/Models/AppVersionTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Modules/Features/BITCredential/.swiftpm/xcode/xcshareddata/xcschemes/BITCredential.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/.swiftpm/xcode/xcshareddata/xcschemes/BITCredential.xcscheme -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Makefile -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Package.resolved -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Package.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Data/Endpoints/CredentialEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Data/Endpoints/CredentialEndpoint.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/AccessToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/AccessToken.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/CredentialDetailBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/CredentialDetailBody.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/CredentialOffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/CredentialOffer.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/CredentialRequestBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/CredentialRequestBody.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/FetchCredentialResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/FetchCredentialResponse.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/IssuerPublicKeyInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/IssuerPublicKeyInfo.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/OpenIdConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/Model/OpenIdConfiguration.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/DeleteCredentialUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/DeleteCredentialUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/FetchCredentialUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/FetchCredentialUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/FetchMetadataUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/FetchMetadataUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/GetCredentialsUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/GetCredentialsUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/GetLastActivityUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/GetLastActivityUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/SaveCredentialUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/UseCases/SaveCredentialUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/Utils/CredentialDidJWKGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/Utils/CredentialDidJWKGenerator.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/Utils/CredentialJWTGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/Utils/CredentialJWTGenerator.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Domain/Utils/CredentialJWTValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Domain/Utils/CredentialJWTValidator.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Module/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Module/Assets.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Card/CredentialCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Card/CredentialCard.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Card/CredentialStatusBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Card/CredentialStatusBadge.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Card/CredentialStatusLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Card/CredentialStatusLabel.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Card/CredentialTinyCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Card/CredentialTinyCard.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Claims/ClaimListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Claims/ClaimListView.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Delete/CredentialDeleteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Delete/CredentialDeleteView.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Detail/CredentialDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Detail/CredentialDetailView.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/List/CredentialList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/List/CredentialList.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Offer/CredentialOfferModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Offer/CredentialOfferModule.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Offer/CredentialOfferRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Offer/CredentialOfferRouter.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Offer/CredentialOfferView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Offer/CredentialOfferView.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Presentation/Stack/CredentialCardStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Presentation/Stack/CredentialCardStack.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredential/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredential/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/AccessToken+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/AccessToken+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/CredentialDetailBody.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/CredentialDetailBody.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/CredentialOffer+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/CredentialOffer+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/CredentialRequestBody+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/CredentialRequestBody+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/FetchCredentialResponse+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/FetchCredentialResponse+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/IssuerPublicKeyInfo+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/IssuerPublicKeyInfo+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/OpenIdConfiguration+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/OpenIdConfiguration+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/access-token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/access-token.json -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/credential-request-body.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/credential-request-body.json -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/jwks-multiple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/jwks-multiple.json -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/jwks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/jwks.json -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/oid-credential-offer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/oid-credential-offer.json -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/openid-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Sources/BITCredentialMocks/Resources/openid-configuration.json -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Tests/BITCredentialTests/Data/ApiCredentialRepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Tests/BITCredentialTests/Data/ApiCredentialRepositoryTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Tests/BITCredentialTests/Data/CredentialDidJWKGeneratorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Tests/BITCredentialTests/Data/CredentialDidJWKGeneratorTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Tests/BITCredentialTests/Data/CredentialJWTGeneratorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Tests/BITCredentialTests/Data/CredentialJWTGeneratorTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Tests/BITCredentialTests/Data/CredentialJWTValidatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Tests/BITCredentialTests/Data/CredentialJWTValidatorTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Tests/BITCredentialTests/Domain/Model/CredentialMetadataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Tests/BITCredentialTests/Domain/Model/CredentialMetadataTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Tests/BITCredentialTests/Domain/Model/CredentialTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Tests/BITCredentialTests/Domain/Model/CredentialTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/Tests/BITCredentialTests/Domain/Model/DisplayLocalizableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/Tests/BITCredentialTests/Domain/Model/DisplayLocalizableTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredential/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredential/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/.gitignore -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Makefile -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Package.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/README.md: -------------------------------------------------------------------------------- 1 | # BITCredentialShared 2 | -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Sources/BITCredentialShared/Domain/Model/Credential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Sources/BITCredentialShared/Domain/Model/Credential.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Sources/BITCredentialShared/Domain/Model/CredentialClaim.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Sources/BITCredentialShared/Domain/Model/CredentialClaim.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Sources/BITCredentialShared/Domain/Model/RawCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Sources/BITCredentialShared/Domain/Model/RawCredential.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Sources/BITCredentialShared/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Sources/BITCredentialShared/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Sources/BITCredentialSharedMocks/Credential+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Sources/BITCredentialSharedMocks/Credential+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Sources/BITCredentialSharedMocks/CredentialClaim+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Sources/BITCredentialSharedMocks/CredentialClaim+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Sources/BITCredentialSharedMocks/CredentialDisplay+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Sources/BITCredentialSharedMocks/CredentialDisplay+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Sources/BITCredentialSharedMocks/CredentialMetadata+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Sources/BITCredentialSharedMocks/CredentialMetadata+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Sources/BITCredentialSharedMocks/RawCredential+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITCredentialShared/Sources/BITCredentialSharedMocks/RawCredential+Mock.swift -------------------------------------------------------------------------------- /Modules/Features/BITCredentialShared/Tests/BITCredentialSharedTests/Tests.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/Features/BITHome/.swiftpm/xcode/xcshareddata/xcschemes/BITHome.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/.swiftpm/xcode/xcshareddata/xcschemes/BITHome.xcscheme -------------------------------------------------------------------------------- /Modules/Features/BITHome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Makefile -------------------------------------------------------------------------------- /Modules/Features/BITHome/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Package.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/README.md -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Module/HomeAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Module/HomeAssets.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Presentation/EmptyStates/CredentialsEmptyStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Presentation/EmptyStates/CredentialsEmptyStateView.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Presentation/EmptyStates/NoCredentialsEmptyStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Presentation/EmptyStates/NoCredentialsEmptyStateView.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Presentation/HomeComposerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Presentation/HomeComposerView.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Presentation/HomeComposerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Presentation/HomeComposerViewModel.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Presentation/HomeHostingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Presentation/HomeHostingController.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Presentation/HomeModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Presentation/HomeModule.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Presentation/HomeRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Presentation/HomeRouter.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Resources/HomeAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Resources/HomeAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Resources/HomeAssets.xcassets/Home.imageset/Home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Resources/HomeAssets.xcassets/Home.imageset/Home@2x.png -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Resources/HomeAssets.xcassets/Home.imageset/Home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Resources/HomeAssets.xcassets/Home.imageset/Home@3x.png -------------------------------------------------------------------------------- /Modules/Features/BITHome/Sources/BITHome/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Sources/BITHome/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Features/BITHome/Tests/BITHomeTests/HomeComposerViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Tests/BITHomeTests/HomeComposerViewModelTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/Tests/BITHomeTests/HomeRouterMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/Tests/BITHomeTests/HomeRouterMock.swift -------------------------------------------------------------------------------- /Modules/Features/BITHome/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITHome/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/.swiftpm/xcode/xcshareddata/xcschemes/BITInvitation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/.swiftpm/xcode/xcshareddata/xcschemes/BITInvitation.xcscheme -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Makefile -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Package.resolved -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Package.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/README.md -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Domain/Models/InvitationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Domain/Models/InvitationType.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Domain/UseCases/CheckInvitationUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Domain/UseCases/CheckInvitationUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Module/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Module/Assets.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Presentation/Invitation/InvitationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Presentation/Invitation/InvitationView.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Presentation/Invitation/ScannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Presentation/Invitation/ScannerView.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Presentation/InvitationModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Presentation/InvitationModule.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Presentation/InvitationRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Presentation/InvitationRouter.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Sources/BITInvitation/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Sources/BITInvitation/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/Tests/BITInvitationTests/Presentation/InvitationRouterMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/Tests/BITInvitationTests/Presentation/InvitationRouterMock.swift -------------------------------------------------------------------------------- /Modules/Features/BITInvitation/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITInvitation/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/.gitignore -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/.swiftpm/xcode/xcshareddata/xcschemes/BITOnboarding.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/.swiftpm/xcode/xcshareddata/xcschemes/BITOnboarding.xcscheme -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Makefile -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Package.resolved -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Package.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Module/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Module/Assets.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingFlowModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingFlowModule.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingFlowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingFlowView.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingFlowViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingFlowViewModel.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingPagerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingPagerView.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingPinCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingPinCodeView.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/OnboardingRouter.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/Steps/BiometricStepView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/Steps/BiometricStepView.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/Steps/OnboardingStepView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/Steps/OnboardingStepView.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/Steps/PinCodeStepView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/Steps/PinCodeStepView.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/Steps/StepViewHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Presentation/Steps/StepViewHeader.swift -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/Sources/BITOnboarding/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/Sources/BITOnboarding/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Features/BITOnboarding/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITOnboarding/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/.swiftpm/xcode/xcshareddata/xcschemes/BITPresentation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/.swiftpm/xcode/xcshareddata/xcschemes/BITPresentation.xcscheme -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Makefile -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Package.resolved -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Package.swift -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Sources/BITPresentation/Domain/Model/CompatibleCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Sources/BITPresentation/Domain/Model/CompatibleCredential.swift -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Sources/BITPresentation/Domain/Model/PresentationMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Sources/BITPresentation/Domain/Model/PresentationMetadata.swift -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Sources/BITPresentation/Domain/Model/RequestObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Sources/BITPresentation/Domain/Model/RequestObject.swift -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Sources/BITPresentation/Domain/Model/Verifier.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public typealias Verifier = ClientMetadata 4 | -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Sources/BITPresentation/Module/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Sources/BITPresentation/Module/Assets.swift -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Sources/BITPresentation/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Sources/BITPresentation/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Sources/BITPresentation/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Sources/BITPresentation/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Sources/BITPresentation/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Sources/BITPresentation/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Sources/BITPresentation/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Sources/BITPresentation/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Sources/BITPresentationMocks/Mocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Sources/BITPresentationMocks/Mocks.swift -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/Tests/BITPresentationTests/Model/RequestObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/Tests/BITPresentationTests/Model/RequestObjectTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITPresentation/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITPresentation/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Features/BITSettings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/.gitignore -------------------------------------------------------------------------------- /Modules/Features/BITSettings/.swiftpm/xcode/xcshareddata/xcschemes/BITSettings.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/.swiftpm/xcode/xcshareddata/xcschemes/BITSettings.xcscheme -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Makefile -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Package.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/README.md -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Data/Repository/AnalyticsRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Data/Repository/AnalyticsRepository.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Domain/Model/PackageDependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Domain/Model/PackageDependency.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Domain/UseCases/FetchAnalyticStatusUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Domain/UseCases/FetchAnalyticStatusUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Domain/UseCases/FetchPackagesUseCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Domain/UseCases/FetchPackagesUseCase.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Module/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Module/Assets.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Impressum/ImpressumView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Impressum/ImpressumView.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Impressum/ImpressumViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Impressum/ImpressumViewModel.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Licences/LicenceDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Licences/LicenceDetailView.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Licences/LicencesListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Licences/LicencesListView.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/MenuCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/MenuCell.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/MenuComposerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/MenuComposerView.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/MenuHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/MenuHeader.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/MenuSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/MenuSection.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/SecondaryMenuCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/SecondaryMenuCell.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/SideNoteMenuCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/SideNoteMenuCell.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/ToggleMenuCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Menu/ToggleMenuCell.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Privacy/PrivacyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Privacy/PrivacyView.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Presentation/Privacy/PrivacyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Presentation/Privacy/PrivacyViewModel.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Sources/BITSettings/Resources/package-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Sources/BITSettings/Resources/package-list.json -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Tests/BITSettingsTests/Domain/FetchAnalyticStatusUseCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Tests/BITSettingsTests/Domain/FetchAnalyticStatusUseCaseTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Tests/BITSettingsTests/Domain/FetchPackagesUseCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Tests/BITSettingsTests/Domain/FetchPackagesUseCaseTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Tests/BITSettingsTests/Domain/UpdateAnalyticStatusUseCaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Tests/BITSettingsTests/Domain/UpdateAnalyticStatusUseCaseTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Tests/BITSettingsTests/Presentation/ImpressumViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Tests/BITSettingsTests/Presentation/ImpressumViewModelTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Tests/BITSettingsTests/Presentation/LicencesListViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Tests/BITSettingsTests/Presentation/LicencesListViewModelTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/Tests/BITSettingsTests/Presentation/PrivacyViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/Tests/BITSettingsTests/Presentation/PrivacyViewModelTests.swift -------------------------------------------------------------------------------- /Modules/Features/BITSettings/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Features/BITSettings/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/.gitignore -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/.swiftpm/xcode/xcshareddata/xcschemes/eIDAnalytics.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/.swiftpm/xcode/xcshareddata/xcschemes/eIDAnalytics.xcscheme -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/.swiftpm/xcode/xcshareddata/xcschemes/eIDAnalyticsTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/.swiftpm/xcode/xcshareddata/xcschemes/eIDAnalyticsTests.xcscheme -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Package.resolved -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/README.md: -------------------------------------------------------------------------------- 1 | # BITAnalytics 2 | -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Analytics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Analytics.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Container.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Event.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Protocols/Loggable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Protocols/Loggable.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Protocols/PrivacySettable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Protocols/PrivacySettable.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Protocols/Provider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Protocols/Provider.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Protocols/ProviderRegisterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Protocols/ProviderRegisterable.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Providers/DynatraceProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalytics/Providers/DynatraceProvider.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalyticsMocks/MockEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalyticsMocks/MockEvent.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalyticsMocks/MockProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalyticsMocks/MockProvider.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Sources/BITAnalyticsMocks/OtherMockProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Sources/BITAnalyticsMocks/OtherMockProvider.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITAnalytics/Tests/BITAnalyticsTests/AnalyticsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITAnalytics/Tests/BITAnalyticsTests/AnalyticsTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/.gitignore -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Package.resolved -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Extensions/Date+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Extensions/Date+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Extensions/DateFormatter+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Extensions/DateFormatter+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Extensions/JSONSerialization+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Extensions/JSONSerialization+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Extensions/MainActor+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Extensions/MainActor+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Extensions/Notifications+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Extensions/Notifications+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Extensions/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Extensions/String+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Extensions/URL+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Extensions/URL+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Helpers/LocaleHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Helpers/LocaleHelper.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Models/CodableValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Models/CodableValue.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Models/StructCopyable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Models/StructCopyable.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Models/ValueType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Models/ValueType.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Module/CoreAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Module/CoreAssets.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Resources/CoreAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Resources/CoreAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/Services/ProcessInfoService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/Services/ProcessInfoService.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/StateMachine/AnyPublisher+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/StateMachine/AnyPublisher+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/StateMachine/CustomAsyncPublisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/StateMachine/CustomAsyncPublisher.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/StateMachine/SendablePublisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/StateMachine/SendablePublisher.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITCore/StateMachine/StateMachine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITCore/StateMachine/StateMachine.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITTestingCore/JSONDecoder+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITTestingCore/JSONDecoder+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITTestingCore/Mockable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITTestingCore/Mockable.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITTestingCore/SecKeyTestsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITTestingCore/SecKeyTestsHelper.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Sources/BITTestingCore/TestingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Sources/BITTestingCore/TestingError.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Tests/BITCoreTests/CodableValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Tests/BITCoreTests/CodableValueTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/Tests/BITCoreTests/StringExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/Tests/BITCoreTests/StringExtensionsTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCore/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCore/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Package.resolved -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/README.md -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Encrypters/AESEncrypter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Encrypters/AESEncrypter.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Encrypters/Encryptable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Encrypters/Encryptable.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Extensions/Data+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Extensions/Data+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Extensions/Digest+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Extensions/Digest+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Extensions/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Extensions/String+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Hashers/Hashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Hashers/Hashable.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Hashers/SHA256Hasher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Hashers/SHA256Hasher.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Hashers/SHA384Hasher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Hashers/SHA384Hasher.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Hashers/SHA512Hasher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Hashers/SHA512Hasher.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Utils/KeyPair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Utils/KeyPair.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Utils/SymmetricKeyProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Utils/SymmetricKeyProtocol.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Sources/BITCrypto/Utils/SymmetricKeyUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Sources/BITCrypto/Utils/SymmetricKeyUtils.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Tests/BITCryptoTests/AESEncrypterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Tests/BITCryptoTests/AESEncrypterTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Tests/BITCryptoTests/DataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Tests/BITCryptoTests/DataTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Tests/BITCryptoTests/SHAHasherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Tests/BITCryptoTests/SHAHasherTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITCrypto/Tests/BITCryptoTests/Utils/Data+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITCrypto/Tests/BITCryptoTests/Utils/Data+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Package.resolved -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/README.md -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Entities/ActivityEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Entities/ActivityEntity.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Entities/CredentialClaimEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Entities/CredentialClaimEntity.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Entities/CredentialEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Entities/CredentialEntity.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Entities/CredentialRawEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Entities/CredentialRawEntity.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Extensions/NSManagedObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Extensions/NSManagedObject.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Stores/CoreDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Stores/CoreDataManager.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Stores/CoreDataStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Stores/CoreDataStore.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Stores/DataStoreClearingMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Stores/DataStoreClearingMode.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Stores/InMemoryCoreDataStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/CoreData/Stores/InMemoryCoreDataStore.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/DataStoreError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/DataStoreError.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Sources/BITDataStore/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Sources/BITDataStore/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDataStore/Tests/BITDataStoreTests/BITDataStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDataStore/Tests/BITDataStoreTests/BITDataStoreTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDeeplink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDeeplink/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITDeeplink/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDeeplink/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDeeplink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDeeplink/README.md -------------------------------------------------------------------------------- /Modules/Platforms/BITDeeplink/Sources/BITDeeplink/DeeplinkError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDeeplink/Sources/BITDeeplink/DeeplinkError.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDeeplink/Sources/BITDeeplink/DeeplinkManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDeeplink/Sources/BITDeeplink/DeeplinkManager.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDeeplink/Sources/BITDeeplink/DeeplinkRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDeeplink/Sources/BITDeeplink/DeeplinkRoute.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDeeplink/Sources/BITDeeplink/Models/RootDeeplinkRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDeeplink/Sources/BITDeeplink/Models/RootDeeplinkRoute.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDeeplink/Sources/BITDeeplink/Module/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDeeplink/Sources/BITDeeplink/Module/Container.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITDeeplink/Tests/BITDeeplinkTests/BITDeeplinkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITDeeplink/Tests/BITDeeplinkTests/BITDeeplinkTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITLocalAuthentication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITLocalAuthentication/.gitignore -------------------------------------------------------------------------------- /Modules/Platforms/BITLocalAuthentication/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITLocalAuthentication/Package.resolved -------------------------------------------------------------------------------- /Modules/Platforms/BITLocalAuthentication/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITLocalAuthentication/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITLocalAuthentication/Sources/BITLocalAuthentication/LAContextProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITLocalAuthentication/Sources/BITLocalAuthentication/LAContextProtocol.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/.gitignore -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/.swiftpm/xcode/xcshareddata/xcschemes/BITNetworkingTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/.swiftpm/xcode/xcshareddata/xcschemes/BITNetworkingTests.xcscheme -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/Package.resolved -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/Sources/BITNavigation/ClosableRoutes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/Sources/BITNavigation/ClosableRoutes.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/Sources/BITNavigation/Extensions/UIApplication+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/Sources/BITNavigation/Extensions/UIApplication+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/Sources/BITNavigation/OpeningStyle/ModalOpeningStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/Sources/BITNavigation/OpeningStyle/ModalOpeningStyle.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/Sources/BITNavigation/OpeningStyle/OpeningStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/Sources/BITNavigation/OpeningStyle/OpeningStyle.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/Sources/BITNavigation/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/Sources/BITNavigation/Router.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/Sources/BITNavigation/RouterProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/Sources/BITNavigation/RouterProtocol.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNavigation/Tests/BITNavigationTests/BITNavigationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNavigation/Tests/BITNavigationTests/BITNavigationTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/.gitignore -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/.swiftpm/xcode/xcshareddata/xcschemes/BITNetworkingTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/.swiftpm/xcode/xcshareddata/xcschemes/BITNetworkingTests.xcscheme -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Package.resolved -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Sources/BITNetworking/Extensions/Response+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Sources/BITNetworking/Extensions/Response+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Sources/BITNetworking/Extensions/TargetType+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Sources/BITNetworking/Extensions/TargetType+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Sources/BITNetworking/Helpers/CertificateLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Sources/BITNetworking/Helpers/CertificateLoader.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Sources/BITNetworking/Helpers/NetworkHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Sources/BITNetworking/Helpers/NetworkHeader.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Sources/BITNetworking/Managers/WildcardServerTrustManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Sources/BITNetworking/Managers/WildcardServerTrustManager.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Sources/BITNetworking/NetworkContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Sources/BITNetworking/NetworkContainer.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Sources/BITNetworking/NetworkError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Sources/BITNetworking/NetworkError.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Sources/BITNetworking/NetworkErrorStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Sources/BITNetworking/NetworkErrorStatus.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Sources/BITNetworking/NetworkMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Sources/BITNetworking/NetworkMonitor.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Sources/BITNetworking/NetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Sources/BITNetworking/NetworkService.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITNetworking/Tests/BITNetworkingTests/BITNetworkingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITNetworking/Tests/BITNetworkingTests/BITNetworkingTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/.swiftpm/xcode/xcshareddata/xcschemes/BITQRScanner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/.swiftpm/xcode/xcshareddata/xcschemes/BITQRScanner.xcscheme -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/README.md -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/CameraPermissionStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/CameraPermissionStatus.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/Module/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/Module/Assets.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerConfiguration.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerDelegate.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerError.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerView.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerViewController+MetadataOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerViewController+MetadataOutput.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerViewController+VideoOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerViewController+VideoOutput.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/QRScannerViewController.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Sources/BITQRScanner/UIImage+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Sources/BITQRScanner/UIImage+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/Tests/BITQRScannerTests/QRScannerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/Tests/BITQRScannerTests/QRScannerTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITQRScanner/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITQRScanner/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/.gitignore -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Package.resolved -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/README -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Extensions/JWSHeader+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Extensions/JWSHeader+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Extensions/SignatureAlgorithm+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Extensions/SignatureAlgorithm+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Extensions/String+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Extensions/String+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/JWTDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/JWTDecoder.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/JWTManageable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/JWTManageable.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/JWTManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/JWTManager.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/JWK.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public typealias JWK = String 4 | -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/JWT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/JWT.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/JWTAlgorithm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/JWTAlgorithm.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/JWTPayload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/JWTPayload.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/SdJWT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/SdJWT.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/SdJWTClaim.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/SdJWTClaim.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/SdJWTCredentialStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/SdJWTCredentialStatus.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/SdJWTDigest.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | public typealias SdJwtDigest = String 4 | -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/SdJWTVc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/SdJWTVc.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/StringDigest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/Model/StringDigest.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/SdJWTDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/SdJWTDecoder.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWT/SdJWTDecoderProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWT/SdJWTDecoderProtocol.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/JWT+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/JWT+Mock.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/JWTPayload+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/JWTPayload+Mock.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/JWTPayloads/jwt-payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/JWTPayloads/jwt-payload.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/JWTs/jwt-invalid-status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/JWTs/jwt-invalid-status.txt -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/JWTs/jwt-valid-status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/JWTs/jwt-valid-status.txt -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/JWTs/jwt-valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/JWTs/jwt-valid.txt -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-array.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-bool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-bool.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-dictionary.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-double.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-int.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-invalid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-invalid.txt -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-claim-string.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-diploma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-diploma.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-id.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-no-disclosures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-no-disclosures.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-sample-expired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-sample-expired.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/Resources/SdJWTs/sd-jwt-sample.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/SdJWT+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Sources/BITSdJWTMocks/SdJWT+Mock.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Tests/BITSdJWTTests/JWTManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Tests/BITSdJWTTests/JWTManagerTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Tests/BITSdJWTTests/JWTTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Tests/BITSdJWTTests/JWTTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSdJWT/Tests/BITSdJWTTests/SdJWTTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSdJWT/Tests/BITSdJWTTests/SdJWTTests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/.gitignore -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/.swiftpm/xcode/xcshareddata/xcschemes/BITSecurity.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/.swiftpm/xcode/xcshareddata/xcschemes/BITSecurity.xcscheme -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/.swiftpm/xcode/xcshareddata/xcschemes/BITSecurityTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/.swiftpm/xcode/xcshareddata/xcschemes/BITSecurityTests.xcscheme -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Package.resolved -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/README.md: -------------------------------------------------------------------------------- 1 | # BITSecurity -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Sources/BITSecurity/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Sources/BITSecurity/Container.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Sources/BITSecurity/Jailbreak/JailbreakDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Sources/BITSecurity/Jailbreak/JailbreakDetector.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Sources/BITSecurity/Jailbreak/UI/JailbreakView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Sources/BITSecurity/Jailbreak/UI/JailbreakView.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Sources/BITSecurity/Module/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Sources/BITSecurity/Module/Assets.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Sources/BITSecurity/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Sources/BITSecurity/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Sources/BITSecurity/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Sources/BITSecurity/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Sources/BITSecurity/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Sources/BITSecurity/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/Tests/BITSecurityTests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/Tests/BITSecurityTests/Tests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITSecurity/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITSecurity/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/.gitignore -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/.swiftpm/xcode/xcshareddata/xcschemes/BITTheming.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/.swiftpm/xcode/xcshareddata/xcschemes/BITTheming.xcscheme -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/.swiftpm/xcode/xcshareddata/xcschemes/ThemingKitTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/.swiftpm/xcode/xcshareddata/xcschemes/ThemingKitTests.xcscheme -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Appearance/BITAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Appearance/BITAppearance.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/CGFloat+CornerRadius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/CGFloat+CornerRadius.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/CGFloat+Padding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/CGFloat+Padding.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/Color+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/Color+Hex.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/Image+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/Image+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/TimeInterval+Animations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/TimeInterval+Animations.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/UIFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/UIFont.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/View+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Extensions/View+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/GeometryEffects/ShakeEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/GeometryEffects/ShakeEffect.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Module/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Module/Fonts.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Module/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Module/Strings.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Module/ThemingAssets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Module/ThemingAssets.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Black.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-BlackItalic.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-ExtraBold.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-ExtraLight.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Italic.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Light.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-LightItalic.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Medium.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-SemiBold.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-Thin.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/Fonts/NotoSans/NotoSans-ThinItalic.ttf -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/ThemingAssets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/ThemingAssets.xcassets/Contents.json -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/ViewModifiers/EmptyStateViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/ViewModifiers/EmptyStateViewModifier.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/ViewModifiers/OnFirstAppear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/ViewModifiers/OnFirstAppear.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/ViewModifiers/PrimaryViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/ViewModifiers/PrimaryViewModifier.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/ViewModifiers/SecondaryViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/ViewModifiers/SecondaryViewModifier.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Badge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Badge.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/AsyncButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/AsyncButton.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/ButtonPlaygrounds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/ButtonPlaygrounds.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/ButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/ButtonStyle.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/PrimaryButtonConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/PrimaryButtonConfiguration.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/PrimaryButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/PrimaryButtonStyle.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/PrimaryProminentButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/PrimaryProminentButtonStyle.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/SecondaryButtonConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/SecondaryButtonConfiguration.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/SecondaryButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Buttons/SecondaryButtonStyle.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Cells/KeyValueCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Cells/KeyValueCell.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/DisclosureIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/DisclosureIndicator.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/EdgeBorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/EdgeBorder.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Effects/VisualEffectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Effects/VisualEffectView.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/EmptyState/EmptyStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/EmptyState/EmptyStateView.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/KeyPad/KeyPadButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/KeyPad/KeyPadButton.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/KeyPad/KeyPadKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/KeyPad/KeyPadKey.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/KeyPad/KeyPadRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/KeyPad/KeyPadRow.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/KeyPad/KeyPads/KeyPad.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/KeyPad/KeyPads/KeyPad.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/LinkText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/LinkText.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Pager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Pager.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/StatusLabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/StatusLabelStyle.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/TitleAndIconReversedLabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/TitleAndIconReversedLabelStyle.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Sources/BITTheming/Views/Toolbars/DefaultToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Sources/BITTheming/Views/Toolbars/DefaultToolbar.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/Tests/BITThemingTests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/Tests/BITThemingTests/Tests.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITTheming/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITTheming/swiftgen.yml -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/.gitignore -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Makefile -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Package.resolved -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Package.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/README.md -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/Extensions/SecAccessControl+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/Extensions/SecAccessControl+Extensions.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/Extensions/SecKey+Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/Extensions/SecKey+Data.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/Managers/EncryptionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/Managers/EncryptionManager.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/Managers/KeyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/Managers/KeyManager.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/Managers/SecretManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/Managers/SecretManager.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/Protocols/EncryptionManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/Protocols/EncryptionManagerProtocol.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/Protocols/KeyManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/Protocols/KeyManagerProtocol.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/Protocols/SecretManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/Protocols/SecretManagerProtocol.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/Query/Query.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/Query/Query.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/Query/QueryBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/Query/QueryBuilder.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/VaultAlgorithm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/VaultAlgorithm.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/VaultError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/VaultError.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Sources/BITVault/VaultOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Sources/BITVault/VaultOption.swift -------------------------------------------------------------------------------- /Modules/Platforms/BITVault/Tests/BITVaultTests/VaultTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Modules/Platforms/BITVault/Tests/BITVaultTests/VaultTests.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Package.swift -------------------------------------------------------------------------------- /Project/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Project/packages.yml -------------------------------------------------------------------------------- /Project/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Project/project.yml -------------------------------------------------------------------------------- /Project/schemes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Project/schemes.yml -------------------------------------------------------------------------------- /Project/targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Project/targets.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/README.md -------------------------------------------------------------------------------- /Resources/downloadOnAppStoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Resources/downloadOnAppStoreLogo.png -------------------------------------------------------------------------------- /Resources/pilotWalletLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Resources/pilotWalletLogo.png -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Scripts/format_generated_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Scripts/format_generated_files.sh -------------------------------------------------------------------------------- /Scripts/swift_package_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Scripts/swift_package_list.sh -------------------------------------------------------------------------------- /Scripts/swiftformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Scripts/swiftformat.sh -------------------------------------------------------------------------------- /Scripts/swiftformat_generated_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Scripts/swiftformat_generated_files.sh -------------------------------------------------------------------------------- /Scripts/swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Scripts/swiftlint.sh -------------------------------------------------------------------------------- /Scripts/xcode_formatting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/Scripts/xcode_formatting.sh -------------------------------------------------------------------------------- /TestPlans/FullTestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/TestPlans/FullTestPlan.xctestplan -------------------------------------------------------------------------------- /TestPlans/UITestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/TestPlans/UITestPlan.xctestplan -------------------------------------------------------------------------------- /TestPlans/UnitTestPlan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/TestPlans/UnitTestPlan.xctestplan -------------------------------------------------------------------------------- /pilotWallet/Core/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/AppDelegate.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Application.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Config/BITServerTrustManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Config/BITServerTrustManager.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Container.swift -------------------------------------------------------------------------------- /pilotWallet/Core/RootRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/RootRouter.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Runners/ApplicationRunnerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Runners/ApplicationRunnerProtocol.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Runners/UserInactivityRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Runners/UserInactivityRunner.swift -------------------------------------------------------------------------------- /pilotWallet/Core/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/SceneDelegate.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Scenes/AppScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Scenes/AppScene.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Scenes/JailbreakScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Scenes/JailbreakScene.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Scenes/NoDevicePinCodeScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Scenes/NoDevicePinCodeScene.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Scenes/OnboardingScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Scenes/OnboardingScene.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Scenes/SceneManagerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Scenes/SceneManagerProtocol.swift -------------------------------------------------------------------------------- /pilotWallet/Core/Scenes/SplashScreenScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Core/Scenes/SplashScreenScene.swift -------------------------------------------------------------------------------- /pilotWallet/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.swift -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/AppIcon-DEV.appiconset/1024x1024_DEVpilotWallet_AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/AppIcon-DEV.appiconset/1024x1024_DEVpilotWallet_AppIcon.png -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/AppIcon-DEV.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/AppIcon-DEV.appiconset/Contents.json -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/AppIcon-REF.appiconset/1024x1024_REFpilotWallet_AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/AppIcon-REF.appiconset/1024x1024_REFpilotWallet_AppIcon.png -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/AppIcon-REF.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/AppIcon-REF.appiconset/Contents.json -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/AppIcon.appiconset/1024x1024_pilotWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/AppIcon.appiconset/1024x1024_pilotWallet.png -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/Logo.imageset/Contents.json -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/Logo.imageset/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/Logo.imageset/Logo.png -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/Logo.imageset/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/Logo.imageset/Logo@2x.png -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/Logo.imageset/Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/Logo.imageset/Logo@3x.png -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/LogoExtended.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/LogoExtended.imageset/Contents.json -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/LogoExtended.imageset/Logo Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/LogoExtended.imageset/Logo Image.png -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/LogoExtended.imageset/Logo Image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/LogoExtended.imageset/Logo Image@2x.png -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/LogoExtended.imageset/Logo Image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/LogoExtended.imageset/Logo Image@3x.png -------------------------------------------------------------------------------- /pilotWallet/Resources/Assets.xcassets/accentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Assets.xcassets/accentColor.colorset/Contents.json -------------------------------------------------------------------------------- /pilotWallet/Resources/Certificates/DigiCertGlobalRootG2.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Certificates/DigiCertGlobalRootG2.der -------------------------------------------------------------------------------- /pilotWallet/Resources/Certificates/QuoVadisRootCA2G3.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Certificates/QuoVadisRootCA2G3.der -------------------------------------------------------------------------------- /pilotWallet/Resources/Certificates/qvrca2g3.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Certificates/qvrca2g3.cer -------------------------------------------------------------------------------- /pilotWallet/Resources/DangerProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/DangerProxy.swift -------------------------------------------------------------------------------- /pilotWallet/Resources/Plist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/Plist.swift -------------------------------------------------------------------------------- /pilotWallet/Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/Resources/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /pilotWallet/SplashScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/SplashScreen.swift -------------------------------------------------------------------------------- /pilotWallet/SplashScreenHostingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/SplashScreenHostingController.swift -------------------------------------------------------------------------------- /pilotWallet/SplashScreenModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/SplashScreenModule.swift -------------------------------------------------------------------------------- /pilotWallet/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWallet/main.swift -------------------------------------------------------------------------------- /pilotWalletTests/ApplicationRunners/UserInactivityRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWalletTests/ApplicationRunners/UserInactivityRunner.swift -------------------------------------------------------------------------------- /pilotWalletTests/Scenes/AppSceneTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWalletTests/Scenes/AppSceneTests.swift -------------------------------------------------------------------------------- /pilotWalletTests/Scenes/NoDevicePinCodeSceneTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWalletTests/Scenes/NoDevicePinCodeSceneTests.swift -------------------------------------------------------------------------------- /pilotWalletTests/Scenes/OnboardingSceneTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWalletTests/Scenes/OnboardingSceneTests.swift -------------------------------------------------------------------------------- /pilotWalletTests/Scenes/RouterMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWalletTests/Scenes/RouterMock.swift -------------------------------------------------------------------------------- /pilotWalletTests/Scenes/SplashScreenSceneTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWalletTests/Scenes/SplashScreenSceneTests.swift -------------------------------------------------------------------------------- /pilotWalletTests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWalletTests/Tests.swift -------------------------------------------------------------------------------- /pilotWalletUITests/LauncherUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/pilotWalletUITests/LauncherUITests.swift -------------------------------------------------------------------------------- /project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/project.yml -------------------------------------------------------------------------------- /swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-id-admin/eidch-pilot-ios-wallet/HEAD/swiftgen.yml --------------------------------------------------------------------------------