├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── RichNav.yml ├── .gitignore ├── Assets ├── Icon.png └── Icon.psd ├── LICENSE.md ├── README.md ├── ServicesKeys-sample.txt ├── ThirdPartyNotices.md └── Windows ├── .vsconfig ├── Analyzers.ruleset ├── Def └── PaZword.Api │ ├── Collections │ ├── ConcurrentObservableCollection.cs │ ├── PendingChange.cs │ └── PendingChangeType.cs │ ├── Data │ ├── IDataManager.cs │ ├── IRemoteSynchronizationService.cs │ ├── ISerializationProvider.cs │ ├── IUpgradableAccountData.cs │ ├── IUpgradeService.cs │ └── SynchronizationResultEventArgs.cs │ ├── IApp.cs │ ├── IExactEquatable.cs │ ├── ILogger.cs │ ├── Models │ ├── Account.cs │ ├── AccountData.cs │ ├── Category.cs │ ├── CategoryIcon.cs │ ├── IconMode.cs │ └── UserDataBundle.cs │ ├── PaZword.Api.csproj │ ├── Properties │ ├── AssemblyInfo.cs │ ├── AssemblyInfo.tt │ └── PaZword.Api.rd.xml │ ├── Security │ ├── IEncryptionProvider.cs │ ├── ITwoFactorAuthProvider.cs │ └── IWindowsHelloAuthProvider.cs │ ├── Services │ ├── IIconService.cs │ ├── IRecurrentTask.cs │ ├── IRecurrentTaskService.cs │ ├── IRemoteStorageProvider.cs │ ├── RecurrentTaskEventArgs.cs │ ├── RecurrentTaskMetadata.cs │ ├── RemoteFileInfo.cs │ ├── RemoteStorageProviderMetadata.cs │ └── TaskRecurrency.cs │ ├── Settings │ ├── ISettingsProvider.cs │ ├── InactivityTime.cs │ ├── SettingDefinition.cs │ └── SettingsDefinitions.cs │ ├── UI │ ├── Controls │ │ ├── IEditableControl.cs │ │ └── ValueCopiedEventArgs.cs │ └── IWindowManager.cs │ └── ViewModels │ └── Data │ ├── AccountDataProviderMetadata.cs │ ├── IAccountDataProvider.cs │ └── IAccountDataViewModel.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Impl ├── PaZword.Core │ ├── Arguments.cs │ ├── Constants.cs │ ├── CoreHelper.cs │ ├── Data │ │ ├── DataManager.cs │ │ ├── RemoteSynchronizationService.cs │ │ ├── SerializationProvider.cs │ │ └── UpgradeService.cs │ ├── Json │ │ └── SecureStringJsonConverter.cs │ ├── Logger.cs │ ├── PaZword.Core.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfo.tt │ │ └── PaZword.Core.rd.xml │ ├── Security │ │ ├── EncryptionProvider.cs │ │ ├── PasswordStrengthEvaluator │ │ │ ├── AdjacentGrouping.cs │ │ │ ├── DefaultMatcherFactory.cs │ │ │ ├── Dictionaries │ │ │ │ ├── english.lst │ │ │ │ ├── female_names.lst │ │ │ │ ├── male_names.lst │ │ │ │ ├── passwords.lst │ │ │ │ └── surnames.lst │ │ │ ├── LinqExtensions.cs │ │ │ ├── Match.cs │ │ │ ├── Matcher │ │ │ │ ├── DateMatch.cs │ │ │ │ ├── DateMatcher.cs │ │ │ │ ├── DictionaryMatch.cs │ │ │ │ ├── DictionaryMatcher.cs │ │ │ │ ├── IMatcher.cs │ │ │ │ ├── L33tDictionaryMatch.cs │ │ │ │ ├── L33tMatcher.cs │ │ │ │ ├── RegexMatcher.cs │ │ │ │ ├── RepeatMatch.cs │ │ │ │ ├── RepeatMatcher.cs │ │ │ │ ├── SequenceMatch.cs │ │ │ │ ├── SequenceMatcher.cs │ │ │ │ ├── SpatialMatch.cs │ │ │ │ └── SpatialMatcher.cs │ │ │ ├── PasswordScoring.cs │ │ │ ├── Utility.cs │ │ │ └── Zxcvbn.cs │ │ ├── TwoFactorAuthProvider.cs │ │ └── WindowsHelloAuthProvider.cs │ ├── Services │ │ ├── Dropbox │ │ │ └── DropBoxStorageProvider.cs │ │ ├── Icons │ │ │ ├── Bing │ │ │ │ ├── BingEntitySearchResponse.cs │ │ │ │ ├── Entities.cs │ │ │ │ ├── Image.cs │ │ │ │ ├── Provider.cs │ │ │ │ └── ValueElement.cs │ │ │ ├── BingEntitySearch.cs │ │ │ ├── Favicon │ │ │ │ ├── FaviconFinderResponse.cs │ │ │ │ └── Icon.cs │ │ │ ├── FaviconFinder.cs │ │ │ └── IconService.cs │ │ ├── OneDrive │ │ │ └── OneDriveStorageProvider.cs │ │ ├── RecurrentTaskService.cs │ │ └── RecurrentTasks │ │ │ ├── InactivityDetectionRecurrentTask.cs │ │ │ └── RequestRateAndReviewRecurrentTask.cs │ ├── ServicesKeys.tt │ ├── Settings │ │ └── SettingsProvider.cs │ ├── StringExtensions.cs │ └── Threading │ │ ├── DisposableSempahore.cs │ │ ├── TaskCompletionNotifier.cs │ │ └── TaskHelper.cs ├── PaZword.Localization │ ├── LanguageManager.Markdown.cs │ ├── LanguageManager.cs │ ├── LanguageManager.tt │ ├── PaZword.Localization.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfo.tt │ │ └── PaZword.Localization.rd.xml │ ├── StringEncodingHelper.cs │ └── Strings │ │ ├── LICENSE.md │ │ ├── en │ │ ├── AccountPage.resw │ │ ├── AuthenticationPage.resw │ │ ├── BankAccountData.resw │ │ ├── BreachDiscoveredDialog.resw │ │ ├── CategoryNameDialog.resw │ │ ├── CategoryPage.resw │ │ ├── Core.resw │ │ ├── CredentialData.resw │ │ ├── Dropbox.resw │ │ ├── FAQ-RemoteStorageProvider.md │ │ ├── FileData.resw │ │ ├── FirstStartExperiencePage.resw │ │ ├── InputDialog.resw │ │ ├── LicenseKeyData.resw │ │ ├── MainPage.resw │ │ ├── OneDrive.resw │ │ ├── OtherData.resw │ │ ├── PasswordGeneratorDialog.resw │ │ ├── PaymentCardData.resw │ │ ├── PrivacyStatement.md │ │ ├── RateAndReviewApp.resw │ │ ├── SettingsPage.resw │ │ ├── SetupTwoFactorAuthentication.resw │ │ └── WiFiCredentialData.resw │ │ ├── fr │ │ ├── AccountPage.resw │ │ ├── AuthenticationPage.resw │ │ ├── BankAccountData.resw │ │ ├── BreachDiscoveredDialog.resw │ │ ├── CategoryNameDialog.resw │ │ ├── CategoryPage.resw │ │ ├── Core.resw │ │ ├── CredentialData.resw │ │ ├── Dropbox.resw │ │ ├── FAQ-RemoteStorageProvider.md │ │ ├── FileData.resw │ │ ├── FirstStartExperiencePage.resw │ │ ├── InputDialog.resw │ │ ├── LicenseKeyData.resw │ │ ├── MainPage.resw │ │ ├── OneDrive.resw │ │ ├── OtherData.resw │ │ ├── PasswordGeneratorDialog.resw │ │ ├── PaymentCardData.resw │ │ ├── PrivacyStatement.md │ │ ├── RateAndReviewApp.resw │ │ ├── SettingsPage.resw │ │ ├── SetupTwoFactorAuthentication.resw │ │ └── WiFiCredentialData.resw │ │ └── ru │ │ ├── AccountPage.resw │ │ ├── AuthenticationPage.resw │ │ ├── BankAccountData.resw │ │ ├── BreachDiscoveredDialog.resw │ │ ├── CategoryNameDialog.resw │ │ ├── CategoryPage.resw │ │ ├── Core.resw │ │ ├── CredentialData.resw │ │ ├── Dropbox.resw │ │ ├── FAQ-RemoteStorageProvider.md │ │ ├── FileData.resw │ │ ├── FirstStartExperiencePage.resw │ │ ├── InputDialog.resw │ │ ├── LicenseKeyData.resw │ │ ├── MainPage.resw │ │ ├── OneDrive.resw │ │ ├── OtherData.resw │ │ ├── PasswordGeneratorDialog.resw │ │ ├── PaymentCardData.resw │ │ ├── PrivacyStatement.md │ │ ├── RateAndReviewApp.resw │ │ ├── SettingsPage.resw │ │ ├── SetupTwoFactorAuthentication.resw │ │ └── WiFiCredentialData.resw └── PaZword │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── CategoryIcons │ │ ├── Bank.png │ │ ├── Bank2.png │ │ ├── BankCard.png │ │ ├── Default.png │ │ ├── Home.png │ │ ├── Id.png │ │ ├── Id2.png │ │ ├── Key.png │ │ ├── Money.png │ │ ├── Personal.png │ │ ├── Personal2.png │ │ ├── Professional.png │ │ ├── Professional2.png │ │ ├── Professional3.png │ │ ├── Safe.png │ │ ├── SocialMedia.png │ │ ├── UserGroup.png │ │ └── UserGroup2.png │ ├── DefaultAccountIcon.png │ ├── DefaultProfilePicture.png │ ├── Dinosaur.png │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── PaymentsCards │ │ ├── amex.png │ │ ├── discover.png │ │ ├── mastercard.png │ │ └── visa.png │ ├── RemoteStorageProviders │ │ ├── Dropbox.png │ │ └── OneDrive.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png │ ├── Core │ ├── MefHost.cs │ ├── NavigationEventArgs.cs │ ├── NavigationHelper.cs │ ├── RecurrentTasks │ │ └── PwnedRecurrentTask.cs │ ├── SelectAccountEventArgs.cs │ ├── SelectCategoryInMenuEventArgs.cs │ ├── UI │ │ ├── ActionCommand.cs │ │ ├── AsyncActionCommand.cs │ │ ├── Controls │ │ │ ├── AccountDataControl.cs │ │ │ ├── CustomNavigationView.cs │ │ │ ├── EditableChoice.cs │ │ │ ├── EditableControlBase.cs │ │ │ ├── EditableDatePicker.cs │ │ │ ├── EditableEmailAddress.cs │ │ │ ├── EditableHyperlink.cs │ │ │ ├── EditablePassword.cs │ │ │ ├── EditableTextBlock.cs │ │ │ └── SynchronizationIndicator.cs │ │ ├── Converters │ │ │ ├── Base64ImageToAccountIconSourceConverter.cs │ │ │ ├── Base64ImageToDominantColorSourceConverter.cs │ │ │ ├── BooleanToVisibilityConverter.cs │ │ │ ├── CategoryIconToBitmapImageConverter.cs │ │ │ ├── EntityNameToAccountIconSourceConverter.cs │ │ │ ├── EnumToBooleanConverter.cs │ │ │ ├── EnumToIntConverter.cs │ │ │ ├── EnumToVisibilityConverter.cs │ │ │ ├── IntToVisibilityConverter.cs │ │ │ ├── InvertedBooleanConverter.cs │ │ │ ├── NullToBooleanConverter.cs │ │ │ ├── NullToVisibilityConverter.cs │ │ │ ├── PageWidthToOpenPaneLengthConverter.cs │ │ │ ├── SecureStringToStringConverter.cs │ │ │ └── TextWrappingToBooleanConverter.cs │ │ ├── EventToCommandBehavior.cs │ │ └── WindowManager.cs │ ├── ViewModelBase.cs │ └── ViewModelLocator.cs │ ├── Models │ ├── AccountGroup.cs │ ├── AccountPageNavigationParameters.cs │ ├── AuthenticationStep.cs │ ├── CategoryPageNavigationParameter.cs │ ├── Data │ │ ├── BankAccountData.cs │ │ ├── CredentialData.cs │ │ ├── FileData.cs │ │ ├── LicenseKeyData.cs │ │ ├── OtherData.cs │ │ ├── PaymentCardData.cs │ │ ├── PaymentCardType.cs │ │ └── WiFiCredentialData.cs │ └── Pwned │ │ └── Breach.cs │ ├── PaZword.csproj │ ├── Package.Debug.appxmanifest │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ ├── AssemblyInfo.tt │ └── Default.rd.xml │ ├── Themes │ ├── ColorTheme.xaml │ ├── Custom.xaml │ └── Generic.xaml │ ├── ViewModels │ ├── AccountPageViewModel.cs │ ├── CategoryPageViewModel.cs │ ├── CommonViewModel.cs │ ├── Data │ │ ├── AccountDataViewModelBase.cs │ │ ├── AccountPageToAccountDataViewModelBridge.cs │ │ ├── BankAccount │ │ │ ├── BankAccountDataProvider.cs │ │ │ └── BankAccountDataViewModel.cs │ │ ├── Credential │ │ │ ├── CredentialDataProvider.cs │ │ │ └── CredentialDataViewModel.cs │ │ ├── File │ │ │ ├── FileDataProvider.cs │ │ │ └── FileDataViewModel.cs │ │ ├── LicenseKey │ │ │ ├── LicenseKeyDataProvider.cs │ │ │ └── LicenseKeyDataViewModel.cs │ │ ├── Other │ │ │ ├── OtherDataProvider.cs │ │ │ └── OtherDataViewModel.cs │ │ ├── PaymentCard │ │ │ ├── PaymentCardDataProvider.cs │ │ │ ├── PaymentCardDataViewModel.cs │ │ │ ├── PaymentCardTypeItem.cs │ │ │ └── PaymentCardTypeItems.cs │ │ └── WiFiCredential │ │ │ ├── WiFiCredentialDataProvider.cs │ │ │ └── WiFiCredentialDataViewModel.cs │ ├── Dialog │ │ ├── BreachDiscoveredDialogViewModel.cs │ │ ├── CategoryNameDialogViewModel.cs │ │ ├── PasswordGeneratorDialogViewModel.cs │ │ └── SetupTwoFactorAuthenticationDialogViewModel.cs │ ├── MainPageViewModel.cs │ ├── Other │ │ ├── AuthenticationPageViewModel.cs │ │ └── FirstStartExperiencePageViewModel.cs │ ├── SettingsPageViewModel.cs │ └── TitleBarViewModel.cs │ └── Views │ ├── AccountPage.xaml │ ├── AccountPage.xaml.cs │ ├── CategoryPage.xaml │ ├── CategoryPage.xaml.cs │ ├── Data │ ├── BankAccountDataUserControl.xaml │ ├── BankAccountDataUserControl.xaml.cs │ ├── CredentialDataUserControl.xaml │ ├── CredentialDataUserControl.xaml.cs │ ├── FileDataUserControl.xaml │ ├── FileDataUserControl.xaml.cs │ ├── LicenseKeyDataUserControl.xaml │ ├── LicenseKeyDataUserControl.xaml.cs │ ├── OtherDataUserControl.xaml │ ├── OtherDataUserControl.xaml.cs │ ├── PaymentCardDataUserControl.xaml │ ├── PaymentCardDataUserControl.xaml.cs │ ├── WiFiCredentialDataUserControl.xaml │ └── WiFiCredentialDataUserControl.xaml.cs │ ├── Dialog │ ├── BreachDiscoveredDialog.xaml │ ├── BreachDiscoveredDialog.xaml.cs │ ├── CategoryNameDialog.xaml │ ├── CategoryNameDialog.xaml.cs │ ├── InputDialog.xaml │ ├── InputDialog.xaml.cs │ ├── PasswordGeneratorDialog.xaml │ ├── PasswordGeneratorDialog.xaml.cs │ ├── SetupTwoFactorAuthenticationDialog.xaml │ └── SetupTwoFactorAuthenticationDialog.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Other │ ├── AuthenticationPage.xaml │ ├── AuthenticationPage.xaml.cs │ ├── FirstStartExperiencePage.xaml │ └── FirstStartExperiencePage.xaml.cs │ ├── SettingsPage.xaml │ └── SettingsPage.xaml.cs ├── PaZword.sln └── Test ├── PaZword.RemoteStorageProvider.ManualTester ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── AsyncActionCommand.cs ├── BooleanToVisibilityConverter.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MainPageViewModel.cs ├── PaZword.RemoteStorageProvider.ManualTester.csproj ├── Package.appxmanifest └── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml └── PaZword.Tests ├── Collections └── ConcurrentObservableCollectionTests.cs ├── Data ├── DataManagerTests.cs ├── RemoteSynchronizationServiceTests.cs └── SerializationProviderTests.cs ├── Integration ├── CategoryAndAccountManagementTests.cs └── FirstStartExperienceTests.cs ├── Json ├── ClassWithSecureString.cs └── SecureStringJsonConverterTests.cs ├── LoggerTests.cs ├── MefBaseTest.cs ├── Mocks ├── MockIRemoteStorageProvider.cs ├── MockIRemoteSynchronizationService.cs ├── MockIWindowManager.cs ├── MockIWindowsHelloAuthProvider.cs └── MockRecurrentTask.cs ├── PaZword.Tests.csproj ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── UnitTestApp.rd.xml ├── RecurrentTasks └── PwnedRecurrentTaskTests.cs ├── Security ├── EncryptionProvidertests.cs └── TwoFactorAuthProviderTests.cs ├── Services └── RecurrentTaskServiceTests.cs ├── Settings └── SettingsProviderTests.cs ├── StringExtensionsTests.cs ├── UI ├── Controls │ └── EditablePasswordTests.cs └── Converters │ └── ConvertersTests.cs ├── UnitTestApp.xaml └── UnitTestApp.xaml.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/RichNav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/.github/workflows/RichNav.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Assets/Icon.png -------------------------------------------------------------------------------- /Assets/Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Assets/Icon.psd -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/README.md -------------------------------------------------------------------------------- /ServicesKeys-sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/ServicesKeys-sample.txt -------------------------------------------------------------------------------- /ThirdPartyNotices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/ThirdPartyNotices.md -------------------------------------------------------------------------------- /Windows/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/.vsconfig -------------------------------------------------------------------------------- /Windows/Analyzers.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Analyzers.ruleset -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Collections/ConcurrentObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Collections/ConcurrentObservableCollection.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Collections/PendingChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Collections/PendingChange.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Collections/PendingChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Collections/PendingChangeType.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Data/IDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Data/IDataManager.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Data/IRemoteSynchronizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Data/IRemoteSynchronizationService.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Data/ISerializationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Data/ISerializationProvider.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Data/IUpgradableAccountData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Data/IUpgradableAccountData.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Data/IUpgradeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Data/IUpgradeService.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Data/SynchronizationResultEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Data/SynchronizationResultEventArgs.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/IApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/IApp.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/IExactEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/IExactEquatable.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/ILogger.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Models/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Models/Account.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Models/AccountData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Models/AccountData.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Models/Category.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Models/CategoryIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Models/CategoryIcon.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Models/IconMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Models/IconMode.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Models/UserDataBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Models/UserDataBundle.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/PaZword.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/PaZword.Api.csproj -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Properties/AssemblyInfo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Properties/AssemblyInfo.tt -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Properties/PaZword.Api.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Properties/PaZword.Api.rd.xml -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Security/IEncryptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Security/IEncryptionProvider.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Security/ITwoFactorAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Security/ITwoFactorAuthProvider.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Security/IWindowsHelloAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Security/IWindowsHelloAuthProvider.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Services/IIconService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Services/IIconService.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Services/IRecurrentTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Services/IRecurrentTask.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Services/IRecurrentTaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Services/IRecurrentTaskService.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Services/IRemoteStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Services/IRemoteStorageProvider.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Services/RecurrentTaskEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Services/RecurrentTaskEventArgs.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Services/RecurrentTaskMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Services/RecurrentTaskMetadata.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Services/RemoteFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Services/RemoteFileInfo.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Services/RemoteStorageProviderMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Services/RemoteStorageProviderMetadata.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Services/TaskRecurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Services/TaskRecurrency.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Settings/ISettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Settings/ISettingsProvider.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Settings/InactivityTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Settings/InactivityTime.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Settings/SettingDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Settings/SettingDefinition.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/Settings/SettingsDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/Settings/SettingsDefinitions.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/UI/Controls/IEditableControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/UI/Controls/IEditableControl.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/UI/Controls/ValueCopiedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/UI/Controls/ValueCopiedEventArgs.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/UI/IWindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/UI/IWindowManager.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/ViewModels/Data/AccountDataProviderMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/ViewModels/Data/AccountDataProviderMetadata.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/ViewModels/Data/IAccountDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/ViewModels/Data/IAccountDataProvider.cs -------------------------------------------------------------------------------- /Windows/Def/PaZword.Api/ViewModels/Data/IAccountDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Def/PaZword.Api/ViewModels/Data/IAccountDataViewModel.cs -------------------------------------------------------------------------------- /Windows/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Directory.Build.props -------------------------------------------------------------------------------- /Windows/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Directory.Build.targets -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Arguments.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Constants.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/CoreHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/CoreHelper.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Data/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Data/DataManager.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Data/RemoteSynchronizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Data/RemoteSynchronizationService.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Data/SerializationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Data/SerializationProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Data/UpgradeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Data/UpgradeService.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Json/SecureStringJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Json/SecureStringJsonConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Logger.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/PaZword.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/PaZword.Core.csproj -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Properties/AssemblyInfo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Properties/AssemblyInfo.tt -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Properties/PaZword.Core.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Properties/PaZword.Core.rd.xml -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/EncryptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/EncryptionProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/AdjacentGrouping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/AdjacentGrouping.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/DefaultMatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/DefaultMatcherFactory.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Dictionaries/english.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Dictionaries/english.lst -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Dictionaries/female_names.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Dictionaries/female_names.lst -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Dictionaries/male_names.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Dictionaries/male_names.lst -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Dictionaries/passwords.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Dictionaries/passwords.lst -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Dictionaries/surnames.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Dictionaries/surnames.lst -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/LinqExtensions.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Match.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Match.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/DateMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/DateMatch.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/DateMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/DateMatcher.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/DictionaryMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/DictionaryMatch.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/DictionaryMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/DictionaryMatcher.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/IMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/IMatcher.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/L33tDictionaryMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/L33tDictionaryMatch.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/L33tMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/L33tMatcher.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/RegexMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/RegexMatcher.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/RepeatMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/RepeatMatch.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/RepeatMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/RepeatMatcher.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/SequenceMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/SequenceMatch.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/SequenceMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/SequenceMatcher.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/SpatialMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/SpatialMatch.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/SpatialMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Matcher/SpatialMatcher.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/PasswordScoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/PasswordScoring.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Utility.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Zxcvbn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/PasswordStrengthEvaluator/Zxcvbn.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/TwoFactorAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/TwoFactorAuthProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Security/WindowsHelloAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Security/WindowsHelloAuthProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Dropbox/DropBoxStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Dropbox/DropBoxStorageProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Icons/Bing/BingEntitySearchResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Icons/Bing/BingEntitySearchResponse.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Icons/Bing/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Icons/Bing/Entities.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Icons/Bing/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Icons/Bing/Image.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Icons/Bing/Provider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Icons/Bing/Provider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Icons/Bing/ValueElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Icons/Bing/ValueElement.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Icons/BingEntitySearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Icons/BingEntitySearch.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Icons/Favicon/FaviconFinderResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Icons/Favicon/FaviconFinderResponse.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Icons/Favicon/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Icons/Favicon/Icon.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Icons/FaviconFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Icons/FaviconFinder.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/Icons/IconService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/Icons/IconService.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/OneDrive/OneDriveStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/OneDrive/OneDriveStorageProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/RecurrentTaskService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/RecurrentTaskService.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/RecurrentTasks/InactivityDetectionRecurrentTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/RecurrentTasks/InactivityDetectionRecurrentTask.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Services/RecurrentTasks/RequestRateAndReviewRecurrentTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Services/RecurrentTasks/RequestRateAndReviewRecurrentTask.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/ServicesKeys.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/ServicesKeys.tt -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Settings/SettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Settings/SettingsProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/StringExtensions.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Threading/DisposableSempahore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Threading/DisposableSempahore.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Threading/TaskCompletionNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Threading/TaskCompletionNotifier.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Core/Threading/TaskHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Core/Threading/TaskHelper.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/LanguageManager.Markdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/LanguageManager.Markdown.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/LanguageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/LanguageManager.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/LanguageManager.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/LanguageManager.tt -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/PaZword.Localization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/PaZword.Localization.csproj -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Properties/AssemblyInfo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Properties/AssemblyInfo.tt -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Properties/PaZword.Localization.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Properties/PaZword.Localization.rd.xml -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/StringEncodingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/StringEncodingHelper.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/LICENSE.md -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/AccountPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/AccountPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/AuthenticationPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/AuthenticationPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/BankAccountData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/BankAccountData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/BreachDiscoveredDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/BreachDiscoveredDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/CategoryNameDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/CategoryNameDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/CategoryPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/CategoryPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/Core.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/Core.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/CredentialData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/CredentialData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/Dropbox.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/Dropbox.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/FAQ-RemoteStorageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/FAQ-RemoteStorageProvider.md -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/FileData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/FileData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/FirstStartExperiencePage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/FirstStartExperiencePage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/InputDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/InputDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/LicenseKeyData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/LicenseKeyData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/MainPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/MainPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/OneDrive.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/OneDrive.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/OtherData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/OtherData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/PasswordGeneratorDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/PasswordGeneratorDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/PaymentCardData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/PaymentCardData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/PrivacyStatement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/PrivacyStatement.md -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/RateAndReviewApp.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/RateAndReviewApp.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/SettingsPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/SettingsPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/SetupTwoFactorAuthentication.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/SetupTwoFactorAuthentication.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/en/WiFiCredentialData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/en/WiFiCredentialData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/AccountPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/AccountPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/AuthenticationPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/AuthenticationPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/BankAccountData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/BankAccountData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/BreachDiscoveredDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/BreachDiscoveredDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/CategoryNameDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/CategoryNameDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/CategoryPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/CategoryPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/Core.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/Core.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/CredentialData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/CredentialData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/Dropbox.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/Dropbox.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/FAQ-RemoteStorageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/FAQ-RemoteStorageProvider.md -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/FileData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/FileData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/FirstStartExperiencePage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/FirstStartExperiencePage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/InputDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/InputDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/LicenseKeyData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/LicenseKeyData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/MainPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/MainPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/OneDrive.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/OneDrive.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/OtherData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/OtherData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/PasswordGeneratorDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/PasswordGeneratorDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/PaymentCardData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/PaymentCardData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/PrivacyStatement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/PrivacyStatement.md -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/RateAndReviewApp.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/RateAndReviewApp.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/SettingsPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/SettingsPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/SetupTwoFactorAuthentication.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/SetupTwoFactorAuthentication.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/fr/WiFiCredentialData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/fr/WiFiCredentialData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/AccountPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/AccountPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/AuthenticationPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/AuthenticationPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/BankAccountData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/BankAccountData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/BreachDiscoveredDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/BreachDiscoveredDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/CategoryNameDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/CategoryNameDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/CategoryPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/CategoryPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/Core.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/Core.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/CredentialData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/CredentialData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/Dropbox.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/Dropbox.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/FAQ-RemoteStorageProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/FAQ-RemoteStorageProvider.md -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/FileData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/FileData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/FirstStartExperiencePage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/FirstStartExperiencePage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/InputDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/InputDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/LicenseKeyData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/LicenseKeyData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/MainPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/MainPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/OneDrive.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/OneDrive.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/OtherData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/OtherData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/PasswordGeneratorDialog.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/PasswordGeneratorDialog.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/PaymentCardData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/PaymentCardData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/PrivacyStatement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/PrivacyStatement.md -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/RateAndReviewApp.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/RateAndReviewApp.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/SettingsPage.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/SettingsPage.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/SetupTwoFactorAuthentication.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/SetupTwoFactorAuthentication.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword.Localization/Strings/ru/WiFiCredentialData.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword.Localization/Strings/ru/WiFiCredentialData.resw -------------------------------------------------------------------------------- /Windows/Impl/PaZword/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/App.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/App.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Bank.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Bank2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Bank2.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/BankCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/BankCard.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Default.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Home.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Id.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Id2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Id2.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Key.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Money.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Personal.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Personal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Personal2.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Professional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Professional.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Professional2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Professional2.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Professional3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Professional3.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/Safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/Safe.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/SocialMedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/SocialMedia.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/UserGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/UserGroup.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/CategoryIcons/UserGroup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/CategoryIcons/UserGroup2.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/DefaultAccountIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/DefaultAccountIcon.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/DefaultProfilePicture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/DefaultProfilePicture.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Dinosaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Dinosaur.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/PaymentsCards/amex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/PaymentsCards/amex.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/PaymentsCards/discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/PaymentsCards/discover.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/PaymentsCards/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/PaymentsCards/mastercard.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/PaymentsCards/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/PaymentsCards/visa.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/RemoteStorageProviders/Dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/RemoteStorageProviders/Dropbox.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/RemoteStorageProviders/OneDrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/RemoteStorageProviders/OneDrive.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/MefHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/MefHost.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/NavigationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/NavigationEventArgs.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/NavigationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/NavigationHelper.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/RecurrentTasks/PwnedRecurrentTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/RecurrentTasks/PwnedRecurrentTask.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/SelectAccountEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/SelectAccountEventArgs.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/SelectCategoryInMenuEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/SelectCategoryInMenuEventArgs.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/ActionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/ActionCommand.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/AsyncActionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/AsyncActionCommand.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Controls/AccountDataControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Controls/AccountDataControl.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Controls/CustomNavigationView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Controls/CustomNavigationView.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Controls/EditableChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Controls/EditableChoice.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Controls/EditableControlBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Controls/EditableControlBase.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Controls/EditableDatePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Controls/EditableDatePicker.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Controls/EditableEmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Controls/EditableEmailAddress.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Controls/EditableHyperlink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Controls/EditableHyperlink.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Controls/EditablePassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Controls/EditablePassword.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Controls/EditableTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Controls/EditableTextBlock.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Controls/SynchronizationIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Controls/SynchronizationIndicator.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/Base64ImageToAccountIconSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/Base64ImageToAccountIconSourceConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/Base64ImageToDominantColorSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/Base64ImageToDominantColorSourceConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/CategoryIconToBitmapImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/CategoryIconToBitmapImageConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/EntityNameToAccountIconSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/EntityNameToAccountIconSourceConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/EnumToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/EnumToBooleanConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/EnumToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/EnumToIntConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/EnumToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/EnumToVisibilityConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/IntToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/IntToVisibilityConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/InvertedBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/InvertedBooleanConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/NullToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/NullToBooleanConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/PageWidthToOpenPaneLengthConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/PageWidthToOpenPaneLengthConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/SecureStringToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/SecureStringToStringConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/Converters/TextWrappingToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/Converters/TextWrappingToBooleanConverter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/EventToCommandBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/EventToCommandBehavior.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/UI/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/UI/WindowManager.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/ViewModelBase.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Core/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Core/ViewModelLocator.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/AccountGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/AccountGroup.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/AccountPageNavigationParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/AccountPageNavigationParameters.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/AuthenticationStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/AuthenticationStep.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/CategoryPageNavigationParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/CategoryPageNavigationParameter.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/Data/BankAccountData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/Data/BankAccountData.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/Data/CredentialData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/Data/CredentialData.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/Data/FileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/Data/FileData.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/Data/LicenseKeyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/Data/LicenseKeyData.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/Data/OtherData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/Data/OtherData.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/Data/PaymentCardData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/Data/PaymentCardData.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/Data/PaymentCardType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/Data/PaymentCardType.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/Data/WiFiCredentialData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/Data/WiFiCredentialData.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Models/Pwned/Breach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Models/Pwned/Breach.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/PaZword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/PaZword.csproj -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Package.Debug.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Package.Debug.appxmanifest -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Package.appxmanifest -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Properties/AssemblyInfo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Properties/AssemblyInfo.tt -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Themes/ColorTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Themes/ColorTheme.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Themes/Custom.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Themes/Custom.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Themes/Generic.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/AccountPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/AccountPageViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/CategoryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/CategoryPageViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/CommonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/CommonViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/AccountDataViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/AccountDataViewModelBase.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/AccountPageToAccountDataViewModelBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/AccountPageToAccountDataViewModelBridge.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/BankAccount/BankAccountDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/BankAccount/BankAccountDataProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/BankAccount/BankAccountDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/BankAccount/BankAccountDataViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/Credential/CredentialDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/Credential/CredentialDataProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/Credential/CredentialDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/Credential/CredentialDataViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/File/FileDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/File/FileDataProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/File/FileDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/File/FileDataViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/LicenseKey/LicenseKeyDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/LicenseKey/LicenseKeyDataProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/LicenseKey/LicenseKeyDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/LicenseKey/LicenseKeyDataViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/Other/OtherDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/Other/OtherDataProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/Other/OtherDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/Other/OtherDataViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/PaymentCard/PaymentCardDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/PaymentCard/PaymentCardDataProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/PaymentCard/PaymentCardDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/PaymentCard/PaymentCardDataViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/PaymentCard/PaymentCardTypeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/PaymentCard/PaymentCardTypeItem.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/PaymentCard/PaymentCardTypeItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/PaymentCard/PaymentCardTypeItems.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/WiFiCredential/WiFiCredentialDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/WiFiCredential/WiFiCredentialDataProvider.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Data/WiFiCredential/WiFiCredentialDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Data/WiFiCredential/WiFiCredentialDataViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Dialog/BreachDiscoveredDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Dialog/BreachDiscoveredDialogViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Dialog/CategoryNameDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Dialog/CategoryNameDialogViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Dialog/PasswordGeneratorDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Dialog/PasswordGeneratorDialogViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Dialog/SetupTwoFactorAuthenticationDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Dialog/SetupTwoFactorAuthenticationDialogViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Other/AuthenticationPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Other/AuthenticationPageViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/Other/FirstStartExperiencePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/Other/FirstStartExperiencePageViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/SettingsPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/SettingsPageViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/ViewModels/TitleBarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/ViewModels/TitleBarViewModel.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/AccountPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/AccountPage.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/AccountPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/AccountPage.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/CategoryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/CategoryPage.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/CategoryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/CategoryPage.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/BankAccountDataUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/BankAccountDataUserControl.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/BankAccountDataUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/BankAccountDataUserControl.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/CredentialDataUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/CredentialDataUserControl.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/CredentialDataUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/CredentialDataUserControl.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/FileDataUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/FileDataUserControl.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/FileDataUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/FileDataUserControl.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/LicenseKeyDataUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/LicenseKeyDataUserControl.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/LicenseKeyDataUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/LicenseKeyDataUserControl.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/OtherDataUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/OtherDataUserControl.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/OtherDataUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/OtherDataUserControl.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/PaymentCardDataUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/PaymentCardDataUserControl.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/PaymentCardDataUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/PaymentCardDataUserControl.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/WiFiCredentialDataUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/WiFiCredentialDataUserControl.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Data/WiFiCredentialDataUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Data/WiFiCredentialDataUserControl.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Dialog/BreachDiscoveredDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Dialog/BreachDiscoveredDialog.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Dialog/BreachDiscoveredDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Dialog/BreachDiscoveredDialog.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Dialog/CategoryNameDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Dialog/CategoryNameDialog.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Dialog/CategoryNameDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Dialog/CategoryNameDialog.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Dialog/InputDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Dialog/InputDialog.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Dialog/InputDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Dialog/InputDialog.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Dialog/PasswordGeneratorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Dialog/PasswordGeneratorDialog.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Dialog/PasswordGeneratorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Dialog/PasswordGeneratorDialog.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Dialog/SetupTwoFactorAuthenticationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Dialog/SetupTwoFactorAuthenticationDialog.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Dialog/SetupTwoFactorAuthenticationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Dialog/SetupTwoFactorAuthenticationDialog.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/MainPage.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Other/AuthenticationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Other/AuthenticationPage.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Other/AuthenticationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Other/AuthenticationPage.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Other/FirstStartExperiencePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Other/FirstStartExperiencePage.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/Other/FirstStartExperiencePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/Other/FirstStartExperiencePage.xaml.cs -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /Windows/Impl/PaZword/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Impl/PaZword/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /Windows/PaZword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/PaZword.sln -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/App.xaml -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/App.xaml.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/AsyncActionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/AsyncActionCommand.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/MainPage.xaml -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/MainPage.xaml.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/MainPageViewModel.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/PaZword.RemoteStorageProvider.ManualTester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/PaZword.RemoteStorageProvider.ManualTester.csproj -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Package.appxmanifest -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.RemoteStorageProvider.ManualTester/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Collections/ConcurrentObservableCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Collections/ConcurrentObservableCollectionTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Data/DataManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Data/DataManagerTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Data/RemoteSynchronizationServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Data/RemoteSynchronizationServiceTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Data/SerializationProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Data/SerializationProviderTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Integration/CategoryAndAccountManagementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Integration/CategoryAndAccountManagementTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Integration/FirstStartExperienceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Integration/FirstStartExperienceTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Json/ClassWithSecureString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Json/ClassWithSecureString.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Json/SecureStringJsonConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Json/SecureStringJsonConverterTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/LoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/LoggerTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/MefBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/MefBaseTest.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Mocks/MockIRemoteStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Mocks/MockIRemoteStorageProvider.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Mocks/MockIRemoteSynchronizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Mocks/MockIRemoteSynchronizationService.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Mocks/MockIWindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Mocks/MockIWindowManager.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Mocks/MockIWindowsHelloAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Mocks/MockIWindowsHelloAuthProvider.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Mocks/MockRecurrentTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Mocks/MockRecurrentTask.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/PaZword.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/PaZword.Tests.csproj -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Package.appxmanifest -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Properties/UnitTestApp.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Properties/UnitTestApp.rd.xml -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/RecurrentTasks/PwnedRecurrentTaskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/RecurrentTasks/PwnedRecurrentTaskTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Security/EncryptionProvidertests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Security/EncryptionProvidertests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Security/TwoFactorAuthProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Security/TwoFactorAuthProviderTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Services/RecurrentTaskServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Services/RecurrentTaskServiceTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/Settings/SettingsProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/Settings/SettingsProviderTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/StringExtensionsTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/UI/Controls/EditablePasswordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/UI/Controls/EditablePasswordTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/UI/Converters/ConvertersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/UI/Converters/ConvertersTests.cs -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/UnitTestApp.xaml -------------------------------------------------------------------------------- /Windows/Test/PaZword.Tests/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veler/PaZword/HEAD/Windows/Test/PaZword.Tests/UnitTestApp.xaml.cs --------------------------------------------------------------------------------