├── .github └── workflows │ └── swift.yml ├── .gitignore ├── Authenticator.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Authenticator.xcscheme ├── Authenticator ├── AddFromScanViewController.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── AppIcon-1024.png │ │ ├── AppIcon-20.png │ │ ├── AppIcon-20@2x.png │ │ ├── AppIcon-20@3x.png │ │ ├── AppIcon-29.png │ │ ├── AppIcon-29@2x.png │ │ ├── AppIcon-29@3x.png │ │ ├── AppIcon-40.png │ │ ├── AppIcon-40@2x.png │ │ ├── AppIcon-40@3x.png │ │ ├── AppIcon-60@2x.png │ │ ├── AppIcon-60@3x.png │ │ ├── AppIcon-76.png │ │ ├── AppIcon-76@2x.png │ │ ├── AppIcon-83.5@2x.png │ │ └── Contents.json │ ├── Contents.json │ ├── CustomColors │ │ ├── CodeBorder.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── DetailsBackground.colorset │ │ │ └── Contents.json │ │ ├── DetailsCodeBackground.colorset │ │ │ └── Contents.json │ │ ├── Favorite.colorset │ │ │ └── Contents.json │ │ ├── ListSectionHeaderColor.colorset │ │ │ └── Contents.json │ │ ├── MenuBackground.colorset │ │ │ └── Contents.json │ │ ├── MenuDivider.colorset │ │ │ └── Contents.json │ │ ├── MenuSelectedBackground.colorset │ │ │ └── Contents.json │ │ ├── SearchBackground.colorset │ │ │ └── Contents.json │ │ ├── SearchBarBackground.colorset │ │ │ └── Contents.json │ │ ├── SheetBackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── TableBackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── TableSelection.colorset │ │ │ └── Contents.json │ │ ├── YubiBlue.colorset │ │ │ └── Contents.json │ │ └── YubiGreen.colorset │ │ │ └── Contents.json │ ├── CustomTableBackgroundColor.colorset │ │ └── Contents.json │ ├── Fre │ │ ├── Contents.json │ │ ├── auth-app-img-light.imageset │ │ │ ├── Contents.json │ │ │ ├── auth-app-img-dark.png │ │ │ ├── auth-app-img-dark@2x.png │ │ │ ├── auth-app-img-dark@3x.png │ │ │ ├── auth-app-img-light.png │ │ │ ├── auth-app-img-light@2x.png │ │ │ └── auth-app-img-light@3x.png │ │ ├── auth-app-intro-2-yk5ci.imageset │ │ │ ├── Contents.json │ │ │ ├── auth-app-intro-2-yk5ci-dark.png │ │ │ ├── auth-app-intro-2-yk5ci-dark@2x.png │ │ │ ├── auth-app-intro-2-yk5ci-dark@3x.png │ │ │ ├── auth-app-intro-2-yk5ci.png │ │ │ ├── auth-app-intro-2-yk5ci@2x.png │ │ │ └── auth-app-intro-2-yk5ci@3x.png │ │ ├── auth-app-intro-3-yk-nfc.imageset │ │ │ ├── Contents.json │ │ │ ├── auth-app-intro-3-yk-nfc-dark.png │ │ │ ├── auth-app-intro-3-yk-nfc-dark@2x.png │ │ │ ├── auth-app-intro-3-yk-nfc-dark@3x.png │ │ │ ├── auth-app-intro-3-yk-nfc.png │ │ │ ├── auth-app-intro-3-yk-nfc@2x.png │ │ │ └── auth-app-intro-3-yk-nfc@3x.png │ │ └── auth-app-intro-4-qr-code.imageset │ │ │ ├── Contents.json │ │ │ ├── auth-app-intro-4-qr-code-dark.png │ │ │ ├── auth-app-intro-4-qr-code-dark@2x.png │ │ │ ├── auth-app-intro-4-qr-code-dark@3x.png │ │ │ ├── auth-app-intro-4-qr-code.png │ │ │ ├── auth-app-intro-4-qr-code@2x.png │ │ │ └── auth-app-intro-4-qr-code@3x.png │ ├── Icons │ │ ├── Contents.json │ │ ├── person.fill.badge.plus.imageset │ │ │ ├── Contents.json │ │ │ ├── person.fill.badge.plus@1x.png │ │ │ ├── person.fill.badge.plus@2x.png │ │ │ └── person.fill.badge.plus@3x.png │ │ ├── plus.imageset │ │ │ ├── Contents.json │ │ │ ├── plus@1x.png │ │ │ ├── plus@2x.png │ │ │ └── plus@3x.png │ │ ├── square.and.pencil.imageset │ │ │ ├── Contents.json │ │ │ ├── square.and.pencil@1x.png │ │ │ ├── square.and.pencil@2x.png │ │ │ └── square.and.pencil@3x.png │ │ ├── star.filled.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_star_white.png │ │ │ ├── ic_star_white_2x.png │ │ │ └── ic_star_white_3x.png │ │ ├── star.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_star_border_white.png │ │ │ ├── ic_star_border_white_2x.png │ │ │ └── ic_star_border_white_3x.png │ │ ├── touch.imageset │ │ │ ├── Contents.json │ │ │ ├── baseline_touch_app_black_24dp-1.png │ │ │ └── baseline_touch_app_black_24dp.png │ │ └── trash.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_delete_white.png │ │ │ ├── ic_delete_white_2x.png │ │ │ └── ic_delete_white_3x.png │ ├── IconsColorSet │ │ ├── Color1.colorset │ │ │ └── Contents.json │ │ ├── Color10.colorset │ │ │ └── Contents.json │ │ ├── Color11.colorset │ │ │ └── Contents.json │ │ ├── Color12.colorset │ │ │ └── Contents.json │ │ ├── Color13.colorset │ │ │ └── Contents.json │ │ ├── Color14.colorset │ │ │ └── Contents.json │ │ ├── Color15.colorset │ │ │ └── Contents.json │ │ ├── Color16.colorset │ │ │ └── Contents.json │ │ ├── Color2.colorset │ │ │ └── Contents.json │ │ ├── Color3.colorset │ │ │ └── Contents.json │ │ ├── Color4.colorset │ │ │ └── Contents.json │ │ ├── Color5.colorset │ │ │ └── Contents.json │ │ ├── Color6.colorset │ │ │ └── Contents.json │ │ ├── Color7.colorset │ │ │ └── Contents.json │ │ ├── Color8.colorset │ │ │ └── Contents.json │ │ ├── Color9.colorset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── InsertKey.imageset │ │ ├── Contents.json │ │ ├── icon-yk5ci-dark-mode.png │ │ ├── icon-yk5ci-dark-mode@2x.png │ │ └── icon-yk5ci-dark-mode@3x.png │ ├── LogoText.imageset │ │ ├── Contents.json │ │ └── big_logo.png │ ├── NavbarLogo.imageset │ │ ├── Contents.json │ │ └── logo-white.svg │ ├── NavbarLogoColor.colorset │ │ └── Contents.json │ ├── SymbolColor.colorset │ │ └── Contents.json │ ├── Symbols │ │ ├── Contents.json │ │ ├── yubikey.circle.fill.symbolset │ │ │ ├── Contents.json │ │ │ └── yubikey.circle.fill.svg │ │ └── yubikey.symbolset │ │ │ ├── Contents.json │ │ │ └── yubikey.svg │ ├── SystemNavigationBar.colorset │ │ └── Contents.json │ ├── What's New │ │ ├── Contents.json │ │ ├── biometric.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-biometric-blue.png │ │ │ ├── icon-biometric-blue@2x.png │ │ │ ├── icon-biometric-blue@3x.png │ │ │ ├── icon-biometric-green.png │ │ │ ├── icon-biometric-green@2x.png │ │ │ └── icon-biometric-green@3x.png │ │ ├── customize.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-customize-blue.png │ │ │ ├── icon-customize-blue@2x.png │ │ │ ├── icon-customize-blue@3x.png │ │ │ ├── icon-customize-green.png │ │ │ ├── icon-customize-green@2x.png │ │ │ └── icon-customize-green@3x.png │ │ └── deviceInfo.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-dev-info-blue.png │ │ │ ├── icon-dev-info-blue@2x.png │ │ │ ├── icon-dev-info-blue@3x.png │ │ │ ├── icon-dev-info-green.png │ │ │ ├── icon-dev-info-green@2x.png │ │ │ └── icon-dev-info-green@3x.png │ ├── YubiKeys │ │ ├── Contents.json │ │ ├── yk5ci.imageset │ │ │ ├── Contents.json │ │ │ └── yk5ci@2x.png │ │ ├── yk5cnfc.imageset │ │ │ ├── Contents.json │ │ │ └── yk5cnfc@2x.png │ │ ├── yk5nfc.imageset │ │ │ ├── Contents.json │ │ │ └── yk5nfc@2x.png │ │ ├── ykbioa.imageset │ │ │ ├── Contents.json │ │ │ └── ykbioa.png │ │ └── ykbioc.imageset │ │ │ ├── Contents.json │ │ │ └── ykbioc.png │ ├── gear.imageset │ │ ├── Contents.json │ │ ├── cogwheel-black-24.png │ │ ├── cogwheel-black-48.png │ │ └── cogwheel-black-72.png │ ├── icon.imageset │ │ ├── AppIcon-60@2x.png │ │ ├── AppIcon-60@3x.png │ │ └── Contents.json │ └── yubikey-nfc.imageset │ │ ├── Contents.json │ │ ├── yubikey-nfc@1x.png │ │ ├── yubikey-nfc@2x.png │ │ └── yubikey-nfc@3x.png ├── Authenticator-Bridging-Header.h ├── Authenticator.entitlements ├── AuthenticatorApp.swift ├── Info.plist ├── InfoPlist.xcstrings ├── Licensing.md ├── Localizable.xcstrings ├── Model │ ├── AccessKeyCache.swift │ ├── Account.swift │ ├── ApplicationSessionObserver.swift │ ├── ApplicationSettingsViewModel.swift │ ├── ConfigurationViewModel.swift │ ├── Connection.swift │ ├── CryptoTokenKit │ │ └── TokenCertificateStorage.swift │ ├── DisableOTPModel.swift │ ├── Extensions │ │ ├── Logger+Extensions.swift │ │ ├── YKFConnectionProtocol+Extensions.swift │ │ ├── YKFKeyVersion+Extensions.swift │ │ └── YKFOATHSession+Extensions.swift │ ├── FIDOPINViewModel.swift │ ├── FIDOResetViewModel.swift │ ├── FavoritesStorage.swift │ ├── KeySessionError.swift │ ├── MainViewModel.swift │ ├── ManagementViewModel.swift │ ├── NotificationsViewModel.swift │ ├── OATHPasswordViewModel.swift │ ├── OATHResetViewModel.swift │ ├── OATHSavedPasswordsViewModel.swift │ ├── OATHSession.swift │ ├── PasswordCache.swift │ ├── PasswordStatusViewModel.swift │ ├── SecureStore │ │ ├── PasswordPreferences.swift │ │ ├── SecureStore.swift │ │ ├── SecureStoreError.swift │ │ └── SecureStoreQueryable.swift │ ├── SettingsConfig.swift │ ├── SmartCardViewModel.swift │ ├── TokenRequestViewModel.swift │ └── YubiKeyInformationViewModel.swift ├── UI │ ├── About │ │ ├── AboutView.swift │ │ ├── LicensingView.swift │ │ ├── TutorialView.swift │ │ └── VersionHistoryView.swift │ ├── AccountDetailsView.swift │ ├── AccountRowView.swift │ ├── Authentication │ │ ├── AddCredential │ │ │ ├── AddAccountWrapper.swift │ │ │ ├── AddCredentialController.swift │ │ │ ├── AdvancedSettingsViewController.swift │ │ │ ├── Base.lproj │ │ │ │ └── AddCredential.storyboard │ │ │ ├── ScanAccountView.swift │ │ │ └── mul.lproj │ │ │ │ └── AddCredential.xcstrings │ │ └── EditCredential │ │ │ ├── Base.lproj │ │ │ └── EditCredential.storyboard │ │ │ ├── EditAccountWrapper.swift │ │ │ ├── EditCredentialController.swift │ │ │ ├── EditFieldController.swift │ │ │ ├── SettingsRowView.swift │ │ │ └── mul.lproj │ │ │ └── EditCredential.xcstrings │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Constants.swift │ ├── DisableOTPView.swift │ ├── ErrorAlertView.swift │ ├── Helpers │ │ ├── Data+Extensions.swift │ │ ├── DetachedMenu.swift │ │ ├── MenuGestureRecognizer.swift │ │ ├── SecCertificate+Extensions.swift │ │ ├── SettingsButton.swift │ │ ├── SettingsView.swift │ │ ├── ShowTime.swift │ │ ├── ToastPresenter.swift │ │ ├── ToastView.swift │ │ ├── UIAlertController+Extensions.swift │ │ ├── UIApplicationExtension.swift │ │ ├── UIButton+Extensions.swift │ │ ├── UIColorAdditions.swift │ │ ├── UIControl+Extensions.swift │ │ ├── UIFont+Extensions.swift │ │ ├── UIGestureRecognizer+Extensions.swift │ │ ├── UIImageAdditions.swift │ │ ├── UIViewAdditions.swift │ │ ├── UIViewControllerAdditions.swift │ │ ├── View+Extensions.swift │ │ └── YubiMenu.swift │ ├── ListStatusView.swift │ ├── MainView.swift │ ├── TokenSession │ │ ├── TokenRequestViewController.swift │ │ ├── TokenRequestWrapper.swift │ │ └── TokenRequestYubiOTPViewController.swift │ ├── YubiKeyConfiguration │ │ ├── ConfigurationView.swift │ │ ├── FIDOPINView.swift │ │ ├── FIDOResetView.swift │ │ ├── NFCSettingsController.swift │ │ ├── OATHPasswordView.swift │ │ ├── OATHResetView.swift │ │ ├── OATHSavedPasswordsView.swift │ │ ├── OTPConfigurationController.swift │ │ └── SmartCardConfigurationController.swift │ ├── YubiOtpRowView.swift │ └── mul.lproj │ │ ├── LaunchScreen.xcstrings │ │ └── Main.xcstrings └── VersionHistory.plist ├── AuthenticatorTests ├── AuthenticatorTests.swift ├── Info.plist ├── SecureStoreTests.swift └── YKFKeyVersionExtensionsTests.swift ├── LICENSE ├── LocalizationScreenshots ├── 1-start.jpeg ├── 10-add-account-manual.jpeg ├── 11-add-account-missing-secret.jpeg ├── 12-add-account-missing-name.jpeg ├── 13-configuration.jpeg ├── 14-configuration-toggle-otp.jpeg ├── 15-configuration-passwords-and-reset-1.jpeg ├── 16-configuration-passwords-and-reset-2.jpeg ├── 17-configuration-set-password.jpeg ├── 18-configuration-clear-passwords.jpeg ├── 19-configuration-nfc-settings.jpeg ├── 2-start-ready-to-scan.jpeg ├── 20-configuration-reset.jpeg ├── 21-configuration-smarrtcard.jpeg ├── 22-configuration-smartcard-enabled.jpeg ├── 23-configuration-smartcard-help.jpeg ├── 24-about.jpeg ├── 25-about-tutorial-1.jpeg ├── 26-about-tutorial-2.jpeg ├── 27-about-tutorial-3.jpeg ├── 28-about-tutorial-4.jpeg ├── 29-about-version-history.jpeg ├── 3-start-successfully-read.jpeg ├── 30-disable-otp.png ├── 31-smartcard-extension-notification.png ├── 32-smartcard-extension-unlock.jpeg ├── 33-smartcard-extension-done.png ├── 4-start-list.jpeg ├── 5-details.jpeg ├── 6-rename.jpeg ├── 7-delete-alert.jpeg ├── 8-start-menu.jpeg └── 9-add-account-qr-code.jpeg ├── Localizations ├── en.xcloc │ ├── Localized Contents │ │ └── en.xliff │ ├── Source Contents │ │ ├── Authenticator │ │ │ ├── UI │ │ │ │ └── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ └── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ └── TokenExtension │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ └── contents.json └── en │ └── en.xcloc │ ├── Localized Contents │ └── en.xliff │ ├── Source Contents │ ├── Authenticator │ │ ├── UI │ │ │ └── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ └── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── Localizable.strings │ └── TokenExtension │ │ └── en.lproj │ │ └── InfoPlist.strings │ └── contents.json ├── README.md ├── TokenExtension ├── Info.plist ├── InfoPlist.xcstrings ├── Localizable.xcstrings ├── TKTokenAlgorithm+Extensions.swift ├── Token.swift ├── TokenDriver.swift ├── TokenExtension.entitlements └── TokenSession.swift └── crowdin.yml /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /Authenticator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Authenticator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Authenticator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Authenticator.xcodeproj/xcshareddata/xcschemes/Authenticator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator.xcodeproj/xcshareddata/xcschemes/Authenticator.xcscheme -------------------------------------------------------------------------------- /Authenticator/AddFromScanViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/AddFromScanViewController.swift -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-20.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-40.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-76.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/CodeBorder.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/CodeBorder.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/DetailsBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/DetailsBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/DetailsCodeBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/DetailsCodeBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/Favorite.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/Favorite.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/ListSectionHeaderColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/ListSectionHeaderColor.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/MenuBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/MenuBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/MenuDivider.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/MenuDivider.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/MenuSelectedBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/MenuSelectedBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/SearchBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/SearchBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/SearchBarBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/SearchBarBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/SheetBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/SheetBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/TableBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/TableBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/TableSelection.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/TableSelection.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/YubiBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/YubiBlue.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomColors/YubiGreen.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomColors/YubiGreen.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/CustomTableBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/CustomTableBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-dark.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-dark@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-dark@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-light.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-light@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-img-light.imageset/auth-app-img-light@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci-dark.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci-dark@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci-dark@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-2-yk5ci.imageset/auth-app-intro-2-yk5ci@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc-dark.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc-dark@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc-dark@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-3-yk-nfc.imageset/auth-app-intro-3-yk-nfc@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code-dark.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code-dark@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code-dark@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Fre/auth-app-intro-4-qr-code.imageset/auth-app-intro-4-qr-code@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/person.fill.badge.plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/person.fill.badge.plus.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/person.fill.badge.plus.imageset/person.fill.badge.plus@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/person.fill.badge.plus.imageset/person.fill.badge.plus@1x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/person.fill.badge.plus.imageset/person.fill.badge.plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/person.fill.badge.plus.imageset/person.fill.badge.plus@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/person.fill.badge.plus.imageset/person.fill.badge.plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/person.fill.badge.plus.imageset/person.fill.badge.plus@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/plus.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/plus.imageset/plus@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/plus.imageset/plus@1x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/plus.imageset/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/plus.imageset/plus@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/plus.imageset/plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/plus.imageset/plus@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/square.and.pencil.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/square.and.pencil.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/square.and.pencil.imageset/square.and.pencil@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/square.and.pencil.imageset/square.and.pencil@1x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/square.and.pencil.imageset/square.and.pencil@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/square.and.pencil.imageset/square.and.pencil@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/square.and.pencil.imageset/square.and.pencil@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/square.and.pencil.imageset/square.and.pencil@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/star.filled.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/star.filled.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/star.filled.imageset/ic_star_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/star.filled.imageset/ic_star_white.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/star.filled.imageset/ic_star_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/star.filled.imageset/ic_star_white_2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/star.filled.imageset/ic_star_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/star.filled.imageset/ic_star_white_3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/star.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/star.imageset/ic_star_border_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/star.imageset/ic_star_border_white.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/star.imageset/ic_star_border_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/star.imageset/ic_star_border_white_2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/star.imageset/ic_star_border_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/star.imageset/ic_star_border_white_3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/touch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/touch.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/touch.imageset/baseline_touch_app_black_24dp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/touch.imageset/baseline_touch_app_black_24dp-1.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/touch.imageset/baseline_touch_app_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/touch.imageset/baseline_touch_app_black_24dp.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/trash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/trash.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/trash.imageset/ic_delete_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/trash.imageset/ic_delete_white.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/trash.imageset/ic_delete_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/trash.imageset/ic_delete_white_2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Icons/trash.imageset/ic_delete_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Icons/trash.imageset/ic_delete_white_3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color1.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color1.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color10.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color10.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color11.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color11.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color12.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color12.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color13.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color13.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color14.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color14.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color15.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color15.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color16.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color16.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color2.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color2.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color3.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color3.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color4.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color4.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color5.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color5.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color6.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color6.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color7.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color7.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color8.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color8.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Color9.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Color9.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/IconsColorSet/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/IconsColorSet/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/InsertKey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/InsertKey.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/InsertKey.imageset/icon-yk5ci-dark-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/InsertKey.imageset/icon-yk5ci-dark-mode.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/InsertKey.imageset/icon-yk5ci-dark-mode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/InsertKey.imageset/icon-yk5ci-dark-mode@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/InsertKey.imageset/icon-yk5ci-dark-mode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/InsertKey.imageset/icon-yk5ci-dark-mode@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/LogoText.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/LogoText.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/LogoText.imageset/big_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/LogoText.imageset/big_logo.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/NavbarLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/NavbarLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/NavbarLogo.imageset/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/NavbarLogo.imageset/logo-white.svg -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/NavbarLogoColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/NavbarLogoColor.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/SymbolColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/SymbolColor.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Symbols/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Symbols/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Symbols/yubikey.circle.fill.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Symbols/yubikey.circle.fill.symbolset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Symbols/yubikey.circle.fill.symbolset/yubikey.circle.fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Symbols/yubikey.circle.fill.symbolset/yubikey.circle.fill.svg -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Symbols/yubikey.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Symbols/yubikey.symbolset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/Symbols/yubikey.symbolset/yubikey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/Symbols/yubikey.symbolset/yubikey.svg -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/SystemNavigationBar.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/SystemNavigationBar.colorset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/biometric.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/biometric.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-blue.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-blue@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-blue@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-green.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-green@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/biometric.imageset/icon-biometric-green@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/customize.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/customize.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-blue.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-blue@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-blue@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-green.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-green@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/customize.imageset/icon-customize-green@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-blue.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-blue@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-blue@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-green.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-green@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-green@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/What's New/deviceInfo.imageset/icon-dev-info-green@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/yk5ci.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/yk5ci.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/yk5ci.imageset/yk5ci@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/yk5ci.imageset/yk5ci@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/yk5cnfc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/yk5cnfc.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/yk5cnfc.imageset/yk5cnfc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/yk5cnfc.imageset/yk5cnfc@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/yk5nfc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/yk5nfc.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/yk5nfc.imageset/yk5nfc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/yk5nfc.imageset/yk5nfc@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/ykbioa.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/ykbioa.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/ykbioa.imageset/ykbioa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/ykbioa.imageset/ykbioa.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/ykbioc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/ykbioc.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/YubiKeys/ykbioc.imageset/ykbioc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/YubiKeys/ykbioc.imageset/ykbioc.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/gear.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/gear.imageset/cogwheel-black-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/gear.imageset/cogwheel-black-24.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/gear.imageset/cogwheel-black-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/gear.imageset/cogwheel-black-48.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/gear.imageset/cogwheel-black-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/gear.imageset/cogwheel-black-72.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/icon.imageset/AppIcon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/icon.imageset/AppIcon-60@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/icon.imageset/AppIcon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/icon.imageset/AppIcon-60@3x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/yubikey-nfc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/yubikey-nfc.imageset/Contents.json -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/yubikey-nfc.imageset/yubikey-nfc@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/yubikey-nfc.imageset/yubikey-nfc@1x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/yubikey-nfc.imageset/yubikey-nfc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/yubikey-nfc.imageset/yubikey-nfc@2x.png -------------------------------------------------------------------------------- /Authenticator/Assets.xcassets/yubikey-nfc.imageset/yubikey-nfc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Assets.xcassets/yubikey-nfc.imageset/yubikey-nfc@3x.png -------------------------------------------------------------------------------- /Authenticator/Authenticator-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Authenticator-Bridging-Header.h -------------------------------------------------------------------------------- /Authenticator/Authenticator.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Authenticator.entitlements -------------------------------------------------------------------------------- /Authenticator/AuthenticatorApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/AuthenticatorApp.swift -------------------------------------------------------------------------------- /Authenticator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Info.plist -------------------------------------------------------------------------------- /Authenticator/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/InfoPlist.xcstrings -------------------------------------------------------------------------------- /Authenticator/Licensing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Licensing.md -------------------------------------------------------------------------------- /Authenticator/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Localizable.xcstrings -------------------------------------------------------------------------------- /Authenticator/Model/AccessKeyCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/AccessKeyCache.swift -------------------------------------------------------------------------------- /Authenticator/Model/Account.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/Account.swift -------------------------------------------------------------------------------- /Authenticator/Model/ApplicationSessionObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/ApplicationSessionObserver.swift -------------------------------------------------------------------------------- /Authenticator/Model/ApplicationSettingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/ApplicationSettingsViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/ConfigurationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/ConfigurationViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/Connection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/Connection.swift -------------------------------------------------------------------------------- /Authenticator/Model/CryptoTokenKit/TokenCertificateStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/CryptoTokenKit/TokenCertificateStorage.swift -------------------------------------------------------------------------------- /Authenticator/Model/DisableOTPModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/DisableOTPModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/Extensions/Logger+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/Extensions/Logger+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/Model/Extensions/YKFConnectionProtocol+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/Extensions/YKFConnectionProtocol+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/Model/Extensions/YKFKeyVersion+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/Extensions/YKFKeyVersion+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/Model/Extensions/YKFOATHSession+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/Extensions/YKFOATHSession+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/Model/FIDOPINViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/FIDOPINViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/FIDOResetViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/FIDOResetViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/FavoritesStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/FavoritesStorage.swift -------------------------------------------------------------------------------- /Authenticator/Model/KeySessionError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/KeySessionError.swift -------------------------------------------------------------------------------- /Authenticator/Model/MainViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/MainViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/ManagementViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/ManagementViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/NotificationsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/NotificationsViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/OATHPasswordViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/OATHPasswordViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/OATHResetViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/OATHResetViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/OATHSavedPasswordsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/OATHSavedPasswordsViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/OATHSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/OATHSession.swift -------------------------------------------------------------------------------- /Authenticator/Model/PasswordCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/PasswordCache.swift -------------------------------------------------------------------------------- /Authenticator/Model/PasswordStatusViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/PasswordStatusViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/SecureStore/PasswordPreferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/SecureStore/PasswordPreferences.swift -------------------------------------------------------------------------------- /Authenticator/Model/SecureStore/SecureStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/SecureStore/SecureStore.swift -------------------------------------------------------------------------------- /Authenticator/Model/SecureStore/SecureStoreError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/SecureStore/SecureStoreError.swift -------------------------------------------------------------------------------- /Authenticator/Model/SecureStore/SecureStoreQueryable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/SecureStore/SecureStoreQueryable.swift -------------------------------------------------------------------------------- /Authenticator/Model/SettingsConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/SettingsConfig.swift -------------------------------------------------------------------------------- /Authenticator/Model/SmartCardViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/SmartCardViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/TokenRequestViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/TokenRequestViewModel.swift -------------------------------------------------------------------------------- /Authenticator/Model/YubiKeyInformationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/Model/YubiKeyInformationViewModel.swift -------------------------------------------------------------------------------- /Authenticator/UI/About/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/About/AboutView.swift -------------------------------------------------------------------------------- /Authenticator/UI/About/LicensingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/About/LicensingView.swift -------------------------------------------------------------------------------- /Authenticator/UI/About/TutorialView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/About/TutorialView.swift -------------------------------------------------------------------------------- /Authenticator/UI/About/VersionHistoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/About/VersionHistoryView.swift -------------------------------------------------------------------------------- /Authenticator/UI/AccountDetailsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/AccountDetailsView.swift -------------------------------------------------------------------------------- /Authenticator/UI/AccountRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/AccountRowView.swift -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/AddCredential/AddAccountWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/AddCredential/AddAccountWrapper.swift -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/AddCredential/AddCredentialController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/AddCredential/AddCredentialController.swift -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/AddCredential/AdvancedSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/AddCredential/AdvancedSettingsViewController.swift -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/AddCredential/Base.lproj/AddCredential.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/AddCredential/Base.lproj/AddCredential.storyboard -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/AddCredential/ScanAccountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/AddCredential/ScanAccountView.swift -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/AddCredential/mul.lproj/AddCredential.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/AddCredential/mul.lproj/AddCredential.xcstrings -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/EditCredential/Base.lproj/EditCredential.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/EditCredential/Base.lproj/EditCredential.storyboard -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/EditCredential/EditAccountWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/EditCredential/EditAccountWrapper.swift -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/EditCredential/EditCredentialController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/EditCredential/EditCredentialController.swift -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/EditCredential/EditFieldController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/EditCredential/EditFieldController.swift -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/EditCredential/SettingsRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/EditCredential/SettingsRowView.swift -------------------------------------------------------------------------------- /Authenticator/UI/Authentication/EditCredential/mul.lproj/EditCredential.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Authentication/EditCredential/mul.lproj/EditCredential.xcstrings -------------------------------------------------------------------------------- /Authenticator/UI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Authenticator/UI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Authenticator/UI/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Constants.swift -------------------------------------------------------------------------------- /Authenticator/UI/DisableOTPView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/DisableOTPView.swift -------------------------------------------------------------------------------- /Authenticator/UI/ErrorAlertView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/ErrorAlertView.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/Data+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/Data+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/DetachedMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/DetachedMenu.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/MenuGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/MenuGestureRecognizer.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/SecCertificate+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/SecCertificate+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/SettingsButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/SettingsButton.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/SettingsView.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/ShowTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/ShowTime.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/ToastPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/ToastPresenter.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/ToastView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/ToastView.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/UIAlertController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/UIAlertController+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/UIApplicationExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/UIApplicationExtension.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/UIButton+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/UIButton+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/UIColorAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/UIColorAdditions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/UIControl+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/UIControl+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/UIFont+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/UIFont+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/UIGestureRecognizer+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/UIGestureRecognizer+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/UIImageAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/UIImageAdditions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/UIViewAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/UIViewAdditions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/UIViewControllerAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/UIViewControllerAdditions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/View+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/View+Extensions.swift -------------------------------------------------------------------------------- /Authenticator/UI/Helpers/YubiMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/Helpers/YubiMenu.swift -------------------------------------------------------------------------------- /Authenticator/UI/ListStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/ListStatusView.swift -------------------------------------------------------------------------------- /Authenticator/UI/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/MainView.swift -------------------------------------------------------------------------------- /Authenticator/UI/TokenSession/TokenRequestViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/TokenSession/TokenRequestViewController.swift -------------------------------------------------------------------------------- /Authenticator/UI/TokenSession/TokenRequestWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/TokenSession/TokenRequestWrapper.swift -------------------------------------------------------------------------------- /Authenticator/UI/TokenSession/TokenRequestYubiOTPViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/TokenSession/TokenRequestYubiOTPViewController.swift -------------------------------------------------------------------------------- /Authenticator/UI/YubiKeyConfiguration/ConfigurationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/YubiKeyConfiguration/ConfigurationView.swift -------------------------------------------------------------------------------- /Authenticator/UI/YubiKeyConfiguration/FIDOPINView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/YubiKeyConfiguration/FIDOPINView.swift -------------------------------------------------------------------------------- /Authenticator/UI/YubiKeyConfiguration/FIDOResetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/YubiKeyConfiguration/FIDOResetView.swift -------------------------------------------------------------------------------- /Authenticator/UI/YubiKeyConfiguration/NFCSettingsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/YubiKeyConfiguration/NFCSettingsController.swift -------------------------------------------------------------------------------- /Authenticator/UI/YubiKeyConfiguration/OATHPasswordView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/YubiKeyConfiguration/OATHPasswordView.swift -------------------------------------------------------------------------------- /Authenticator/UI/YubiKeyConfiguration/OATHResetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/YubiKeyConfiguration/OATHResetView.swift -------------------------------------------------------------------------------- /Authenticator/UI/YubiKeyConfiguration/OATHSavedPasswordsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/YubiKeyConfiguration/OATHSavedPasswordsView.swift -------------------------------------------------------------------------------- /Authenticator/UI/YubiKeyConfiguration/OTPConfigurationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/YubiKeyConfiguration/OTPConfigurationController.swift -------------------------------------------------------------------------------- /Authenticator/UI/YubiKeyConfiguration/SmartCardConfigurationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/YubiKeyConfiguration/SmartCardConfigurationController.swift -------------------------------------------------------------------------------- /Authenticator/UI/YubiOtpRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/YubiOtpRowView.swift -------------------------------------------------------------------------------- /Authenticator/UI/mul.lproj/LaunchScreen.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/mul.lproj/LaunchScreen.xcstrings -------------------------------------------------------------------------------- /Authenticator/UI/mul.lproj/Main.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/UI/mul.lproj/Main.xcstrings -------------------------------------------------------------------------------- /Authenticator/VersionHistory.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Authenticator/VersionHistory.plist -------------------------------------------------------------------------------- /AuthenticatorTests/AuthenticatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/AuthenticatorTests/AuthenticatorTests.swift -------------------------------------------------------------------------------- /AuthenticatorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/AuthenticatorTests/Info.plist -------------------------------------------------------------------------------- /AuthenticatorTests/SecureStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/AuthenticatorTests/SecureStoreTests.swift -------------------------------------------------------------------------------- /AuthenticatorTests/YKFKeyVersionExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/AuthenticatorTests/YKFKeyVersionExtensionsTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /LocalizationScreenshots/1-start.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/1-start.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/10-add-account-manual.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/10-add-account-manual.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/11-add-account-missing-secret.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/11-add-account-missing-secret.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/12-add-account-missing-name.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/12-add-account-missing-name.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/13-configuration.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/13-configuration.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/14-configuration-toggle-otp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/14-configuration-toggle-otp.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/15-configuration-passwords-and-reset-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/15-configuration-passwords-and-reset-1.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/16-configuration-passwords-and-reset-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/16-configuration-passwords-and-reset-2.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/17-configuration-set-password.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/17-configuration-set-password.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/18-configuration-clear-passwords.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/18-configuration-clear-passwords.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/19-configuration-nfc-settings.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/19-configuration-nfc-settings.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/2-start-ready-to-scan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/2-start-ready-to-scan.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/20-configuration-reset.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/20-configuration-reset.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/21-configuration-smarrtcard.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/21-configuration-smarrtcard.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/22-configuration-smartcard-enabled.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/22-configuration-smartcard-enabled.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/23-configuration-smartcard-help.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/23-configuration-smartcard-help.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/24-about.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/24-about.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/25-about-tutorial-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/25-about-tutorial-1.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/26-about-tutorial-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/26-about-tutorial-2.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/27-about-tutorial-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/27-about-tutorial-3.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/28-about-tutorial-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/28-about-tutorial-4.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/29-about-version-history.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/29-about-version-history.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/3-start-successfully-read.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/3-start-successfully-read.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/30-disable-otp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/30-disable-otp.png -------------------------------------------------------------------------------- /LocalizationScreenshots/31-smartcard-extension-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/31-smartcard-extension-notification.png -------------------------------------------------------------------------------- /LocalizationScreenshots/32-smartcard-extension-unlock.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/32-smartcard-extension-unlock.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/33-smartcard-extension-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/33-smartcard-extension-done.png -------------------------------------------------------------------------------- /LocalizationScreenshots/4-start-list.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/4-start-list.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/5-details.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/5-details.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/6-rename.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/6-rename.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/7-delete-alert.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/7-delete-alert.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/8-start-menu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/8-start-menu.jpeg -------------------------------------------------------------------------------- /LocalizationScreenshots/9-add-account-qr-code.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/LocalizationScreenshots/9-add-account-qr-code.jpeg -------------------------------------------------------------------------------- /Localizations/en.xcloc/Localized Contents/en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en.xcloc/Localized Contents/en.xliff -------------------------------------------------------------------------------- /Localizations/en.xcloc/Source Contents/Authenticator/UI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en.xcloc/Source Contents/Authenticator/UI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Localizations/en.xcloc/Source Contents/Authenticator/UI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en.xcloc/Source Contents/Authenticator/UI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Localizations/en.xcloc/Source Contents/Authenticator/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en.xcloc/Source Contents/Authenticator/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Localizations/en.xcloc/Source Contents/Authenticator/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en.xcloc/Source Contents/Authenticator/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/en.xcloc/Source Contents/TokenExtension/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en.xcloc/Source Contents/TokenExtension/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Localizations/en.xcloc/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en.xcloc/contents.json -------------------------------------------------------------------------------- /Localizations/en/en.xcloc/Localized Contents/en.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en/en.xcloc/Localized Contents/en.xliff -------------------------------------------------------------------------------- /Localizations/en/en.xcloc/Source Contents/Authenticator/UI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en/en.xcloc/Source Contents/Authenticator/UI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Localizations/en/en.xcloc/Source Contents/Authenticator/UI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en/en.xcloc/Source Contents/Authenticator/UI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Localizations/en/en.xcloc/Source Contents/Authenticator/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en/en.xcloc/Source Contents/Authenticator/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Localizations/en/en.xcloc/Source Contents/Authenticator/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en/en.xcloc/Source Contents/Authenticator/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localizations/en/en.xcloc/Source Contents/TokenExtension/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en/en.xcloc/Source Contents/TokenExtension/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Localizations/en/en.xcloc/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/Localizations/en/en.xcloc/contents.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/README.md -------------------------------------------------------------------------------- /TokenExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/TokenExtension/Info.plist -------------------------------------------------------------------------------- /TokenExtension/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/TokenExtension/InfoPlist.xcstrings -------------------------------------------------------------------------------- /TokenExtension/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/TokenExtension/Localizable.xcstrings -------------------------------------------------------------------------------- /TokenExtension/TKTokenAlgorithm+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/TokenExtension/TKTokenAlgorithm+Extensions.swift -------------------------------------------------------------------------------- /TokenExtension/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/TokenExtension/Token.swift -------------------------------------------------------------------------------- /TokenExtension/TokenDriver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/TokenExtension/TokenDriver.swift -------------------------------------------------------------------------------- /TokenExtension/TokenExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/TokenExtension/TokenExtension.entitlements -------------------------------------------------------------------------------- /TokenExtension/TokenSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/TokenExtension/TokenSession.swift -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubioath-ios/HEAD/crowdin.yml --------------------------------------------------------------------------------