├── .gitignore ├── Binaries ├── Crypture-x64-1.0.1.7-installer.msi └── Crypture-x86-1.0.1.7-installer.msi ├── Code ├── AboutBox.xaml ├── AboutBox.xaml.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── Build │ ├── Build.cmd │ └── Crypture.wxs ├── CertWizard.xaml ├── CertWizard.xaml.cs ├── CertificateNative.cs ├── CertificateOperations.cs ├── Cipher.cs ├── Crypture.csproj ├── Crypture.csproj.user ├── Crypture.sln ├── Crypture.sln.DotSettings.user ├── CryptureEntities.Context.cs ├── CryptureEntities.Context.tt ├── CryptureEntities.Designer.cs ├── CryptureEntities.cs ├── CryptureEntities.edmx ├── CryptureEntities.edmx.diagram ├── CryptureEntities.tt ├── Data │ ├── License - Active Directory Object Picker.txt │ ├── License - ControlzEx.txt │ ├── License - Crypture.txt │ ├── License - Fluent Ribbon.txt │ ├── Licenses.Designer.cs │ ├── Licenses.resx │ └── SQLite.sql ├── Images │ ├── About.png │ ├── Add.png │ ├── Certificate.png │ ├── Compress.png │ ├── DatabaseLoad.png │ ├── DatabaseNew.png │ ├── Download.png │ ├── Load.png │ ├── Own.png │ ├── Refresh.png │ ├── Remove.png │ ├── Save.png │ ├── Share.png │ ├── Upload.png │ └── View.png ├── Instance.cs ├── Item.cs ├── ItemBrowser.xaml ├── ItemBrowser.xaml.cs ├── ItemEditor.xaml ├── ItemEditor.xaml.cs ├── LICENSE ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── Safe.ico ├── User.cs ├── Utilities.cs ├── packages.config └── packages │ ├── ControlzEx.3.0.2.4 │ ├── ControlzEx.3.0.2.4.nupkg │ └── lib │ │ ├── net40 │ │ ├── ControlzEx.dll │ │ ├── ControlzEx.pdb │ │ └── System.Windows.Interactivity.dll │ │ ├── net45 │ │ ├── ControlzEx.dll │ │ ├── ControlzEx.pdb │ │ └── System.Windows.Interactivity.dll │ │ └── net462 │ │ ├── ControlzEx.dll │ │ ├── ControlzEx.pdb │ │ └── System.Windows.Interactivity.dll │ ├── EntityFramework.6.2.0 │ ├── EntityFramework.6.2.0.nupkg │ ├── content │ │ └── net40 │ │ │ ├── App.config.transform │ │ │ └── Web.config.transform │ ├── lib │ │ ├── net40 │ │ │ ├── EntityFramework.SqlServer.dll │ │ │ ├── EntityFramework.SqlServer.xml │ │ │ ├── EntityFramework.dll │ │ │ └── EntityFramework.xml │ │ └── net45 │ │ │ ├── EntityFramework.SqlServer.dll │ │ │ ├── EntityFramework.SqlServer.xml │ │ │ ├── EntityFramework.dll │ │ │ └── EntityFramework.xml │ └── tools │ │ ├── EntityFramework.PowerShell.Utility.dll │ │ ├── EntityFramework.PowerShell.dll │ │ ├── EntityFramework.psd1 │ │ ├── EntityFramework.psm1 │ │ ├── about_EntityFramework.help.txt │ │ ├── init.ps1 │ │ ├── install.ps1 │ │ └── migrate.exe │ ├── Fluent.Ribbon.6.1.0.326 │ ├── Fluent.Ribbon.6.1.0.326.nupkg │ └── lib │ │ ├── net40 │ │ ├── Fluent.XML │ │ ├── Fluent.dll │ │ └── Fluent.pdb │ │ ├── net45 │ │ ├── Fluent.XML │ │ ├── Fluent.dll │ │ └── Fluent.pdb │ │ └── net462 │ │ ├── Fluent.XML │ │ ├── Fluent.dll │ │ └── Fluent.pdb │ ├── System.Data.SQLite.1.0.109.2 │ ├── .signature.p7s │ └── System.Data.SQLite.1.0.109.2.nupkg │ ├── System.Data.SQLite.Core.1.0.109.2 │ ├── .signature.p7s │ ├── System.Data.SQLite.Core.1.0.109.2.nupkg │ ├── build │ │ ├── net20 │ │ │ ├── System.Data.SQLite.Core.targets │ │ │ ├── x64 │ │ │ │ └── SQLite.Interop.dll │ │ │ └── x86 │ │ │ │ └── SQLite.Interop.dll │ │ ├── net40 │ │ │ ├── System.Data.SQLite.Core.targets │ │ │ ├── x64 │ │ │ │ └── SQLite.Interop.dll │ │ │ └── x86 │ │ │ │ └── SQLite.Interop.dll │ │ ├── net45 │ │ │ ├── System.Data.SQLite.Core.targets │ │ │ ├── x64 │ │ │ │ └── SQLite.Interop.dll │ │ │ └── x86 │ │ │ │ └── SQLite.Interop.dll │ │ ├── net451 │ │ │ ├── System.Data.SQLite.Core.targets │ │ │ ├── x64 │ │ │ │ └── SQLite.Interop.dll │ │ │ └── x86 │ │ │ │ └── SQLite.Interop.dll │ │ └── net46 │ │ │ ├── System.Data.SQLite.Core.targets │ │ │ ├── x64 │ │ │ └── SQLite.Interop.dll │ │ │ └── x86 │ │ │ └── SQLite.Interop.dll │ ├── lib │ │ ├── net20 │ │ │ ├── System.Data.SQLite.dll │ │ │ ├── System.Data.SQLite.dll.config │ │ │ └── System.Data.SQLite.xml │ │ ├── net40 │ │ │ ├── System.Data.SQLite.dll │ │ │ ├── System.Data.SQLite.dll.config │ │ │ └── System.Data.SQLite.xml │ │ ├── net45 │ │ │ ├── System.Data.SQLite.dll │ │ │ ├── System.Data.SQLite.dll.config │ │ │ └── System.Data.SQLite.xml │ │ ├── net451 │ │ │ ├── System.Data.SQLite.dll │ │ │ ├── System.Data.SQLite.dll.config │ │ │ └── System.Data.SQLite.xml │ │ ├── net46 │ │ │ ├── System.Data.SQLite.dll │ │ │ ├── System.Data.SQLite.dll.config │ │ │ └── System.Data.SQLite.xml │ │ └── netstandard2.0 │ │ │ ├── System.Data.SQLite.dll │ │ │ ├── System.Data.SQLite.dll.config │ │ │ └── System.Data.SQLite.xml │ └── runtimes │ │ ├── linux-x64 │ │ └── native │ │ │ └── netstandard2.0 │ │ │ └── SQLite.Interop.dll │ │ ├── osx-x64 │ │ └── native │ │ │ └── netstandard2.0 │ │ │ └── SQLite.Interop.dll │ │ ├── win-x64 │ │ └── native │ │ │ └── netstandard2.0 │ │ │ └── SQLite.Interop.dll │ │ └── win-x86 │ │ └── native │ │ └── netstandard2.0 │ │ └── SQLite.Interop.dll │ ├── System.Data.SQLite.EF6.1.0.109.0 │ ├── .signature.p7s │ ├── System.Data.SQLite.EF6.1.0.109.0.nupkg │ ├── content │ │ ├── net40 │ │ │ ├── app.config.install.xdt │ │ │ ├── app.config.transform │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.transform │ │ ├── net45 │ │ │ ├── app.config.install.xdt │ │ │ ├── app.config.transform │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.transform │ │ ├── net451 │ │ │ ├── app.config.install.xdt │ │ │ ├── app.config.transform │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.transform │ │ └── net46 │ │ │ ├── app.config.install.xdt │ │ │ ├── app.config.transform │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.transform │ ├── lib │ │ ├── net40 │ │ │ └── System.Data.SQLite.EF6.dll │ │ ├── net45 │ │ │ └── System.Data.SQLite.EF6.dll │ │ ├── net451 │ │ │ └── System.Data.SQLite.EF6.dll │ │ └── net46 │ │ │ └── System.Data.SQLite.EF6.dll │ └── tools │ │ ├── net40 │ │ └── install.ps1 │ │ ├── net45 │ │ └── install.ps1 │ │ ├── net451 │ │ └── install.ps1 │ │ └── net46 │ │ └── install.ps1 │ ├── System.Data.SQLite.Linq.1.0.109.0 │ ├── .signature.p7s │ ├── System.Data.SQLite.Linq.1.0.109.0.nupkg │ ├── content │ │ ├── net20 │ │ │ ├── app.config.transform │ │ │ └── web.config.transform │ │ ├── net40 │ │ │ ├── app.config.transform │ │ │ └── web.config.transform │ │ ├── net45 │ │ │ ├── app.config.transform │ │ │ └── web.config.transform │ │ ├── net451 │ │ │ ├── app.config.transform │ │ │ └── web.config.transform │ │ └── net46 │ │ │ ├── app.config.transform │ │ │ └── web.config.transform │ └── lib │ │ ├── net20 │ │ └── System.Data.SQLite.Linq.dll │ │ ├── net40 │ │ └── System.Data.SQLite.Linq.dll │ │ ├── net45 │ │ └── System.Data.SQLite.Linq.dll │ │ ├── net451 │ │ └── System.Data.SQLite.Linq.dll │ │ └── net46 │ │ └── System.Data.SQLite.Linq.dll │ └── Tulpep.ActiveDirectoryObjectPicker.2.2.129 │ ├── Tulpep.ActiveDirectoryObjectPicker.2.2.129.nupkg │ ├── lib │ ├── net20 │ │ ├── ActiveDirectoryObjectPicker.dll │ │ ├── ActiveDirectoryObjectPicker.pdb │ │ └── ActiveDirectoryObjectPicker.xml │ ├── net35 │ │ ├── ActiveDirectoryObjectPicker.dll │ │ ├── ActiveDirectoryObjectPicker.pdb │ │ └── ActiveDirectoryObjectPicker.xml │ ├── net40 │ │ ├── ActiveDirectoryObjectPicker.dll │ │ ├── ActiveDirectoryObjectPicker.pdb │ │ └── ActiveDirectoryObjectPicker.xml │ └── net452 │ │ ├── ActiveDirectoryObjectPicker.dll │ │ ├── ActiveDirectoryObjectPicker.pdb │ │ └── ActiveDirectoryObjectPicker.xml │ └── src │ ├── ADsPathsProviders.cs │ ├── AssemblyInfo.cs │ ├── ComInterop.cs │ ├── DirectoryObject.cs │ ├── DirectoryObjectPickerDialog.cs │ ├── ExtensionAttributeFor.NET_2.0.cs │ ├── IntPtrExtensions.cs │ ├── Locations.cs │ ├── NameTranslator.cs │ ├── ObjectTypes.cs │ ├── PInvoke.cs │ ├── StructsFlags.cs │ └── UnmanagedArrayOfStrings.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/.gitignore -------------------------------------------------------------------------------- /Binaries/Crypture-x64-1.0.1.7-installer.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Binaries/Crypture-x64-1.0.1.7-installer.msi -------------------------------------------------------------------------------- /Binaries/Crypture-x86-1.0.1.7-installer.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Binaries/Crypture-x86-1.0.1.7-installer.msi -------------------------------------------------------------------------------- /Code/AboutBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/AboutBox.xaml -------------------------------------------------------------------------------- /Code/AboutBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/AboutBox.xaml.cs -------------------------------------------------------------------------------- /Code/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/App.config -------------------------------------------------------------------------------- /Code/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/App.xaml -------------------------------------------------------------------------------- /Code/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/App.xaml.cs -------------------------------------------------------------------------------- /Code/Build/Build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Build/Build.cmd -------------------------------------------------------------------------------- /Code/Build/Crypture.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Build/Crypture.wxs -------------------------------------------------------------------------------- /Code/CertWizard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CertWizard.xaml -------------------------------------------------------------------------------- /Code/CertWizard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CertWizard.xaml.cs -------------------------------------------------------------------------------- /Code/CertificateNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CertificateNative.cs -------------------------------------------------------------------------------- /Code/CertificateOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CertificateOperations.cs -------------------------------------------------------------------------------- /Code/Cipher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Cipher.cs -------------------------------------------------------------------------------- /Code/Crypture.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Crypture.csproj -------------------------------------------------------------------------------- /Code/Crypture.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Crypture.csproj.user -------------------------------------------------------------------------------- /Code/Crypture.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Crypture.sln -------------------------------------------------------------------------------- /Code/Crypture.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Crypture.sln.DotSettings.user -------------------------------------------------------------------------------- /Code/CryptureEntities.Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CryptureEntities.Context.cs -------------------------------------------------------------------------------- /Code/CryptureEntities.Context.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CryptureEntities.Context.tt -------------------------------------------------------------------------------- /Code/CryptureEntities.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CryptureEntities.Designer.cs -------------------------------------------------------------------------------- /Code/CryptureEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CryptureEntities.cs -------------------------------------------------------------------------------- /Code/CryptureEntities.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CryptureEntities.edmx -------------------------------------------------------------------------------- /Code/CryptureEntities.edmx.diagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CryptureEntities.edmx.diagram -------------------------------------------------------------------------------- /Code/CryptureEntities.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/CryptureEntities.tt -------------------------------------------------------------------------------- /Code/Data/License - Active Directory Object Picker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Data/License - Active Directory Object Picker.txt -------------------------------------------------------------------------------- /Code/Data/License - ControlzEx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Data/License - ControlzEx.txt -------------------------------------------------------------------------------- /Code/Data/License - Crypture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Data/License - Crypture.txt -------------------------------------------------------------------------------- /Code/Data/License - Fluent Ribbon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Data/License - Fluent Ribbon.txt -------------------------------------------------------------------------------- /Code/Data/Licenses.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Data/Licenses.Designer.cs -------------------------------------------------------------------------------- /Code/Data/Licenses.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Data/Licenses.resx -------------------------------------------------------------------------------- /Code/Data/SQLite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Data/SQLite.sql -------------------------------------------------------------------------------- /Code/Images/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/About.png -------------------------------------------------------------------------------- /Code/Images/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Add.png -------------------------------------------------------------------------------- /Code/Images/Certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Certificate.png -------------------------------------------------------------------------------- /Code/Images/Compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Compress.png -------------------------------------------------------------------------------- /Code/Images/DatabaseLoad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/DatabaseLoad.png -------------------------------------------------------------------------------- /Code/Images/DatabaseNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/DatabaseNew.png -------------------------------------------------------------------------------- /Code/Images/Download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Download.png -------------------------------------------------------------------------------- /Code/Images/Load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Load.png -------------------------------------------------------------------------------- /Code/Images/Own.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Own.png -------------------------------------------------------------------------------- /Code/Images/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Refresh.png -------------------------------------------------------------------------------- /Code/Images/Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Remove.png -------------------------------------------------------------------------------- /Code/Images/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Save.png -------------------------------------------------------------------------------- /Code/Images/Share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Share.png -------------------------------------------------------------------------------- /Code/Images/Upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/Upload.png -------------------------------------------------------------------------------- /Code/Images/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Images/View.png -------------------------------------------------------------------------------- /Code/Instance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Instance.cs -------------------------------------------------------------------------------- /Code/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Item.cs -------------------------------------------------------------------------------- /Code/ItemBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/ItemBrowser.xaml -------------------------------------------------------------------------------- /Code/ItemBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/ItemBrowser.xaml.cs -------------------------------------------------------------------------------- /Code/ItemEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/ItemEditor.xaml -------------------------------------------------------------------------------- /Code/ItemEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/ItemEditor.xaml.cs -------------------------------------------------------------------------------- /Code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/LICENSE -------------------------------------------------------------------------------- /Code/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Code/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Properties/Resources.resx -------------------------------------------------------------------------------- /Code/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Code/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Properties/Settings.settings -------------------------------------------------------------------------------- /Code/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Properties/app.manifest -------------------------------------------------------------------------------- /Code/Safe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Safe.ico -------------------------------------------------------------------------------- /Code/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/User.cs -------------------------------------------------------------------------------- /Code/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/Utilities.cs -------------------------------------------------------------------------------- /Code/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages.config -------------------------------------------------------------------------------- /Code/packages/ControlzEx.3.0.2.4/ControlzEx.3.0.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/ControlzEx.3.0.2.4/ControlzEx.3.0.2.4.nupkg -------------------------------------------------------------------------------- /Code/packages/ControlzEx.3.0.2.4/lib/net40/ControlzEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/ControlzEx.3.0.2.4/lib/net40/ControlzEx.dll -------------------------------------------------------------------------------- /Code/packages/ControlzEx.3.0.2.4/lib/net40/ControlzEx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/ControlzEx.3.0.2.4/lib/net40/ControlzEx.pdb -------------------------------------------------------------------------------- /Code/packages/ControlzEx.3.0.2.4/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/ControlzEx.3.0.2.4/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Code/packages/ControlzEx.3.0.2.4/lib/net45/ControlzEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/ControlzEx.3.0.2.4/lib/net45/ControlzEx.dll -------------------------------------------------------------------------------- /Code/packages/ControlzEx.3.0.2.4/lib/net45/ControlzEx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/ControlzEx.3.0.2.4/lib/net45/ControlzEx.pdb -------------------------------------------------------------------------------- /Code/packages/ControlzEx.3.0.2.4/lib/net45/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/ControlzEx.3.0.2.4/lib/net45/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Code/packages/ControlzEx.3.0.2.4/lib/net462/ControlzEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/ControlzEx.3.0.2.4/lib/net462/ControlzEx.dll -------------------------------------------------------------------------------- /Code/packages/ControlzEx.3.0.2.4/lib/net462/ControlzEx.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/ControlzEx.3.0.2.4/lib/net462/ControlzEx.pdb -------------------------------------------------------------------------------- /Code/packages/ControlzEx.3.0.2.4/lib/net462/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/ControlzEx.3.0.2.4/lib/net462/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/EntityFramework.6.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/EntityFramework.6.2.0.nupkg -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/content/net40/App.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/content/net40/App.config.transform -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/content/net40/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/content/net40/Web.config.transform -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/lib/net40/EntityFramework.xml -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/lib/net45/EntityFramework.xml -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/tools/EntityFramework.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/tools/EntityFramework.psm1 -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/tools/about_EntityFramework.help.txt -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/tools/init.ps1 -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/tools/install.ps1 -------------------------------------------------------------------------------- /Code/packages/EntityFramework.6.2.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/EntityFramework.6.2.0/tools/migrate.exe -------------------------------------------------------------------------------- /Code/packages/Fluent.Ribbon.6.1.0.326/Fluent.Ribbon.6.1.0.326.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Fluent.Ribbon.6.1.0.326/Fluent.Ribbon.6.1.0.326.nupkg -------------------------------------------------------------------------------- /Code/packages/Fluent.Ribbon.6.1.0.326/lib/net40/Fluent.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Fluent.Ribbon.6.1.0.326/lib/net40/Fluent.XML -------------------------------------------------------------------------------- /Code/packages/Fluent.Ribbon.6.1.0.326/lib/net40/Fluent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Fluent.Ribbon.6.1.0.326/lib/net40/Fluent.dll -------------------------------------------------------------------------------- /Code/packages/Fluent.Ribbon.6.1.0.326/lib/net40/Fluent.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Fluent.Ribbon.6.1.0.326/lib/net40/Fluent.pdb -------------------------------------------------------------------------------- /Code/packages/Fluent.Ribbon.6.1.0.326/lib/net45/Fluent.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Fluent.Ribbon.6.1.0.326/lib/net45/Fluent.XML -------------------------------------------------------------------------------- /Code/packages/Fluent.Ribbon.6.1.0.326/lib/net45/Fluent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Fluent.Ribbon.6.1.0.326/lib/net45/Fluent.dll -------------------------------------------------------------------------------- /Code/packages/Fluent.Ribbon.6.1.0.326/lib/net45/Fluent.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Fluent.Ribbon.6.1.0.326/lib/net45/Fluent.pdb -------------------------------------------------------------------------------- /Code/packages/Fluent.Ribbon.6.1.0.326/lib/net462/Fluent.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Fluent.Ribbon.6.1.0.326/lib/net462/Fluent.XML -------------------------------------------------------------------------------- /Code/packages/Fluent.Ribbon.6.1.0.326/lib/net462/Fluent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Fluent.Ribbon.6.1.0.326/lib/net462/Fluent.dll -------------------------------------------------------------------------------- /Code/packages/Fluent.Ribbon.6.1.0.326/lib/net462/Fluent.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Fluent.Ribbon.6.1.0.326/lib/net462/Fluent.pdb -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.1.0.109.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.1.0.109.2/.signature.p7s -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.1.0.109.2/System.Data.SQLite.1.0.109.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.1.0.109.2/System.Data.SQLite.1.0.109.2.nupkg -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/.signature.p7s -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/System.Data.SQLite.Core.1.0.109.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/System.Data.SQLite.Core.1.0.109.2.nupkg -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net20/System.Data.SQLite.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net20/System.Data.SQLite.Core.targets -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net20/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net20/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net20/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net20/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net40/System.Data.SQLite.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net40/System.Data.SQLite.Core.targets -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net40/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net40/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net40/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net40/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net45/System.Data.SQLite.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net45/System.Data.SQLite.Core.targets -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net45/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net45/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net45/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net45/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net451/System.Data.SQLite.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net451/System.Data.SQLite.Core.targets -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net451/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net451/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net451/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net451/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net46/System.Data.SQLite.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net46/System.Data.SQLite.Core.targets -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net46/x64/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net46/x64/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net46/x86/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/build/net46/x86/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net20/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net20/System.Data.SQLite.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net20/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net20/System.Data.SQLite.dll.config -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net20/System.Data.SQLite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net20/System.Data.SQLite.xml -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net40/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net40/System.Data.SQLite.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net40/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net40/System.Data.SQLite.dll.config -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net40/System.Data.SQLite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net40/System.Data.SQLite.xml -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net45/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net45/System.Data.SQLite.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net45/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net45/System.Data.SQLite.dll.config -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net45/System.Data.SQLite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net45/System.Data.SQLite.xml -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net451/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net451/System.Data.SQLite.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net451/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net451/System.Data.SQLite.dll.config -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net451/System.Data.SQLite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net451/System.Data.SQLite.xml -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net46/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net46/System.Data.SQLite.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net46/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net46/System.Data.SQLite.dll.config -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net46/System.Data.SQLite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/net46/System.Data.SQLite.xml -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/netstandard2.0/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/netstandard2.0/System.Data.SQLite.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/netstandard2.0/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/netstandard2.0/System.Data.SQLite.dll.config -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/netstandard2.0/System.Data.SQLite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/lib/netstandard2.0/System.Data.SQLite.xml -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/runtimes/linux-x64/native/netstandard2.0/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/runtimes/linux-x64/native/netstandard2.0/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/runtimes/osx-x64/native/netstandard2.0/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/runtimes/osx-x64/native/netstandard2.0/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/runtimes/win-x64/native/netstandard2.0/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/runtimes/win-x64/native/netstandard2.0/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Core.1.0.109.2/runtimes/win-x86/native/netstandard2.0/SQLite.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Core.1.0.109.2/runtimes/win-x86/native/netstandard2.0/SQLite.Interop.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/.signature.p7s -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/System.Data.SQLite.EF6.1.0.109.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/System.Data.SQLite.EF6.1.0.109.0.nupkg -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/app.config.install.xdt -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/app.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/web.config.install.xdt -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net40/web.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/app.config.install.xdt -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/app.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/web.config.install.xdt -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net45/web.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/app.config.install.xdt -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/app.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/web.config.install.xdt -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net451/web.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/app.config.install.xdt -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/app.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/web.config.install.xdt -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/content/net46/web.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net40/System.Data.SQLite.EF6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net40/System.Data.SQLite.EF6.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net45/System.Data.SQLite.EF6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net45/System.Data.SQLite.EF6.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net451/System.Data.SQLite.EF6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net451/System.Data.SQLite.EF6.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net46/System.Data.SQLite.EF6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/lib/net46/System.Data.SQLite.EF6.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/tools/net40/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/tools/net40/install.ps1 -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/tools/net45/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/tools/net45/install.ps1 -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/tools/net451/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/tools/net451/install.ps1 -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.EF6.1.0.109.0/tools/net46/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.EF6.1.0.109.0/tools/net46/install.ps1 -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/.signature.p7s -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/System.Data.SQLite.Linq.1.0.109.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/System.Data.SQLite.Linq.1.0.109.0.nupkg -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net20/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net20/app.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net20/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net20/web.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net40/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net40/app.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net40/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net40/web.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net45/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net45/app.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net45/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net45/web.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net451/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net451/app.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net451/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net451/web.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net46/app.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net46/app.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net46/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/content/net46/web.config.transform -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net20/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net20/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net40/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net40/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net45/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net45/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net451/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net451/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /Code/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net46/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/System.Data.SQLite.Linq.1.0.109.0/lib/net46/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/Tulpep.ActiveDirectoryObjectPicker.2.2.129.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/Tulpep.ActiveDirectoryObjectPicker.2.2.129.nupkg -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net20/ActiveDirectoryObjectPicker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net20/ActiveDirectoryObjectPicker.dll -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net20/ActiveDirectoryObjectPicker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net20/ActiveDirectoryObjectPicker.pdb -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net20/ActiveDirectoryObjectPicker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net20/ActiveDirectoryObjectPicker.xml -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net35/ActiveDirectoryObjectPicker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net35/ActiveDirectoryObjectPicker.dll -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net35/ActiveDirectoryObjectPicker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net35/ActiveDirectoryObjectPicker.pdb -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net35/ActiveDirectoryObjectPicker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net35/ActiveDirectoryObjectPicker.xml -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net40/ActiveDirectoryObjectPicker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net40/ActiveDirectoryObjectPicker.dll -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net40/ActiveDirectoryObjectPicker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net40/ActiveDirectoryObjectPicker.pdb -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net40/ActiveDirectoryObjectPicker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net40/ActiveDirectoryObjectPicker.xml -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net452/ActiveDirectoryObjectPicker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net452/ActiveDirectoryObjectPicker.dll -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net452/ActiveDirectoryObjectPicker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net452/ActiveDirectoryObjectPicker.pdb -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net452/ActiveDirectoryObjectPicker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/lib/net452/ActiveDirectoryObjectPicker.xml -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/ADsPathsProviders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/ADsPathsProviders.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/ComInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/ComInterop.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/DirectoryObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/DirectoryObject.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/DirectoryObjectPickerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/DirectoryObjectPickerDialog.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/ExtensionAttributeFor.NET_2.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/ExtensionAttributeFor.NET_2.0.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/IntPtrExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/IntPtrExtensions.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/Locations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/Locations.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/NameTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/NameTranslator.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/ObjectTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/ObjectTypes.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/PInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/PInvoke.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/StructsFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/StructsFlags.cs -------------------------------------------------------------------------------- /Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/UnmanagedArrayOfStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/Code/packages/Tulpep.ActiveDirectoryObjectPicker.2.2.129/src/UnmanagedArrayOfStrings.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoMoreFood/Crypture/HEAD/README.md --------------------------------------------------------------------------------