├── .gitattributes ├── .gitignore ├── Classes ├── DVCacheManager.h ├── DVCacheManager.m ├── DVErrorHandler.h ├── DVErrorHandler.m ├── DVStrings.h ├── DVTextEditController.h ├── DVTextEditController.m ├── DVTextEditController.xib ├── DecryptionStateMachine.h ├── DecryptionStateMachine.m ├── DetailViewController.h ├── DetailViewController.m ├── DropVaultKeys.h ├── DropboxPrototypeAppDelegate.h ├── DropboxPrototypeAppDelegate.m ├── KeyFileDecryptor.h ├── KeyFileDecryptor.m ├── NSData+EncryptionHelpers.h ├── NSData+EncryptionHelpers.m ├── NSManagedObjectModel+UnitTests.h ├── NSManagedObjectModel+UnitTests.m ├── NSString+FileSystemHelper.h ├── NSString+FileSystemHelper.m ├── PasswordController.h ├── PasswordController.m ├── PasswordController.xib ├── Rfc2898DeriveBytes.h ├── Rfc2898DeriveBytes.m ├── RootViewController.h └── RootViewController.m ├── ContentSrc ├── Sitefile ├── content │ ├── c-css │ │ ├── config.rb │ │ ├── images │ │ │ └── grid.png │ │ ├── src │ │ │ ├── ie.scss │ │ │ ├── partials │ │ │ │ ├── _base.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _page.scss │ │ │ │ └── _two_col.scss │ │ │ ├── print.scss │ │ │ └── screen.scss │ │ └── stylesheets │ │ │ ├── ie.css │ │ │ ├── print.css │ │ │ └── screen.css │ ├── index.txt │ ├── unlinked.md │ └── welcome.md ├── layouts │ └── default.haml ├── lib │ └── breadcrumbs.rb ├── output │ ├── .cairn │ ├── c-css │ │ ├── config.rb │ │ ├── images │ │ │ └── grid.png │ │ ├── src │ │ │ ├── ie.scss │ │ │ ├── print.scss │ │ │ └── screen.scss │ │ └── stylesheets │ │ │ ├── ie.css │ │ │ ├── print.css │ │ │ └── screen.css │ ├── index.html │ ├── unlinked.html │ └── welcome.html └── templates │ ├── _partial.erb │ └── page.erb ├── DropVault.xcodeproj ├── brian.mode1v3 ├── brian.pbxuser ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── brian.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── brian.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── DropboxPrototype.xcscheme │ ├── Unit Tests.xcscheme │ └── xcschememanagement.plist ├── DropboxSDK ├── DBAccountInfo.h ├── DBAccountInfo.m ├── DBCreateAccountController.h ├── DBCreateAccountController.m ├── DBError.h ├── DBError.m ├── DBLoadingView.h ├── DBLoadingView.m ├── DBLoginController.h ├── DBLoginController.m ├── DBMetadata.h ├── DBMetadata.m ├── DBQuota.h ├── DBQuota.m ├── DBRequest.h ├── DBRequest.m ├── DBRestClient.h ├── DBRestClient.m ├── DBSession.h ├── DBSession.m ├── DropboxSDK.h ├── JSON │ ├── JSON.h │ ├── NSObject+SBJSON.h │ ├── NSObject+SBJSON.m │ ├── NSString+SBJSON.h │ ├── NSString+SBJSON.m │ ├── SBJSON.h │ ├── SBJSON.m │ ├── SBJsonBase.h │ ├── SBJsonBase.m │ ├── SBJsonParser.h │ ├── SBJsonParser.m │ ├── SBJsonWriter.h │ └── SBJsonWriter.m ├── MPOAuth │ ├── Crypto │ │ ├── Base64Transcoder.c │ │ └── Base64Transcoder.h │ ├── MPDebug.h │ ├── MPOAuth.h │ ├── MPOAuthAPI.h │ ├── MPOAuthAPI.m │ ├── MPOAuthAPIRequestLoader.h │ ├── MPOAuthAPIRequestLoader.m │ ├── MPOAuthAuthenticationMethod.h │ ├── MPOAuthAuthenticationMethod.m │ ├── MPOAuthAuthenticationMethodOAuth.h │ ├── MPOAuthAuthenticationMethodOAuth.m │ ├── MPOAuthConnection.h │ ├── MPOAuthConnection.m │ ├── MPOAuthCredentiaIConcreteStore+KeychainAdditionsMac.m │ ├── MPOAuthCredentialConcreteStore+KeychainAdditions.h │ ├── MPOAuthCredentialConcreteStore+KeychainAdditionsiPhone.m │ ├── MPOAuthCredentialConcreteStore.h │ ├── MPOAuthCredentialConcreteStore.m │ ├── MPOAuthCredentialStore.h │ ├── MPOAuthParameterFactory.h │ ├── MPOAuthSignatureParameter.h │ ├── MPOAuthSignatureParameter.m │ ├── MPOAuthURLRequest.h │ ├── MPOAuthURLRequest.m │ ├── MPOAuthURLResponse.h │ ├── MPOAuthURLResponse.m │ ├── MPURLRequestParameter.h │ ├── MPURLRequestParameter.m │ ├── NSString+URLEscapingAdditions.h │ ├── NSString+URLEscapingAdditions.m │ ├── NSURL+MPURLParameterAdditions.h │ ├── NSURL+MPURLParameterAdditions.m │ ├── NSURLResponse+Encoding.h │ └── NSURLResponse+Encoding.m ├── NSString+Dropbox.h ├── NSString+Dropbox.m └── Resources │ ├── db_background.png │ ├── db_create_account.png │ ├── db_create_account@2x.png │ ├── db_create_account_button.png │ ├── db_create_account_button_down.png │ ├── db_link_button.png │ ├── db_link_button_down.png │ ├── db_link_header.png │ ├── db_link_header@2x.png │ ├── db_logo.png │ └── db_logo@2x.png ├── GTM ├── GTMCALayer+UnitTesting.h ├── GTMCALayer+UnitTesting.m ├── GTMDefines.h ├── GTMGarbageCollection.h ├── GTMIPhoneUnitTestDelegate.h ├── GTMIPhoneUnitTestDelegate.m ├── GTMIPhoneUnitTestMain.m ├── GTMNSNumber+64Bit.h ├── GTMNSObject+UnitTesting.h ├── GTMNSObject+UnitTesting.m ├── GTMObjC2Runtime.h ├── GTMObjC2Runtime.m ├── GTMRegex.h ├── GTMRegex.m ├── GTMSenTestCase.h ├── GTMSenTestCase.m ├── GTMSystemVersion.h ├── GTMSystemVersion.m ├── GTMUIKit+UnitTesting.h ├── GTMUIKit+UnitTesting.m ├── GTMUnitTestDevLog.h └── GTMUnitTestDevLog.m ├── Info.plist ├── Libraries ├── Headers │ └── OCMock │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── OCMArg.h │ │ ├── OCMConstraint.h │ │ ├── OCMock.h │ │ ├── OCMockObject.h │ │ └── OCMockRecorder.h └── libOCMock.a ├── Prefix.pch ├── README.md ├── Resources ├── 54-lock.png ├── DBConfidential-512.png ├── DBConfidential-72.png ├── DBConfidential.acorn ├── DetailView.xib ├── DropboxPrototype.xcdatamodeld │ ├── .xccurrentversion │ └── DropboxPrototype.xcdatamodel │ │ ├── elements │ │ └── layout ├── FileIcons │ ├── excel48.gif │ ├── folder48.gif │ ├── folder_gray48.gif │ ├── folder_photos48.gif │ ├── folder_public48.gif │ ├── folder_star48.gif │ ├── folder_user48.gif │ ├── music48.gif │ ├── package48.gif │ ├── page_white48.gif │ ├── page_white_acrobat48.gif │ ├── page_white_actionscript48.gif │ ├── page_white_c48.gif │ ├── page_white_code48.gif │ ├── page_white_cplusplus48.gif │ ├── page_white_csharp.gif │ ├── page_white_cup48.gif │ ├── page_white_dvd.gif │ ├── page_white_flash48.gif │ ├── page_white_gear48.gif │ ├── page_white_h48.gif │ ├── page_white_paint48.gif │ ├── page_white_php48.gif │ ├── page_white_picture48.gif │ ├── page_white_ruby48.gif │ ├── page_white_text48.gif │ ├── page_white_tux48.gif │ ├── page_white_vector48.gif │ ├── page_white_visualstudio48.gif │ ├── page_white_zip48.gif │ ├── powerpoint48.gif │ └── word48.gif ├── MainWindow.xib └── test2.xcdatamodeld │ └── .xccurrentversion ├── Tests ├── DVCacheManagerTest.m ├── DVTextEditControllerTest.m ├── DecryptionStateMachineTest.m ├── DetailViewControllerTest.m ├── DropboxPrototypeAppDelegateTest.m ├── KeyFileDecryptorTest.m ├── NSData+EncryptionHelpersTest.m ├── NSString+FileSystemHelperTest.m ├── PasswordControllerTest.m ├── Rfc2898DeriveBytesTest.m ├── RootViewControllerTest.m └── simple-metadata.plist ├── UnitTest-Info.plist ├── UnitTestData ├── 20110124210018-10545998.dat ├── 20110124210018-10545998.key ├── 20110124210018-1676EF1B.dat ├── 20110124210018-1676EF1B.key ├── 20110124210018-1B2F353C.dat ├── 20110124210018-1B2F353C.key ├── 20110124210018-26185D7F.dat ├── 20110124210018-26185D7F.key ├── 20110124210018-29D91325.dat ├── 20110124210018-29D91325.key ├── 20110124210018-5A18C74F.dat ├── 20110124210018-5A18C74F.key ├── 20110124210018-81C35ABD.dat ├── 20110124210018-81C35ABD.key ├── 20110124210018-93D80E71.dat ├── 20110124210018-93D80E71.key ├── 20110124210018-98558734.dat ├── 20110124210018-98558734.key ├── 20110124210018-990373B9.dat ├── 20110124210018-990373B9.key ├── 20110124210018-AEF7647D.dat ├── 20110124210018-AEF7647D.key ├── 20110124210018-B6608D07.dat ├── 20110124210018-B6608D07.key ├── 20110124210018-C40AA0DD.dat ├── 20110124210018-C40AA0DD.key ├── 20110124210018-D9BC656C.dat ├── 20110124210018-D9BC656C.key ├── 20110124210019-9BF7D555.dat ├── 20110124210019-9BF7D555.key ├── 20110124210019-F3C18527.dat ├── 20110124210019-F3C18527.key ├── DropBoxMetadata.json ├── MetadataAddFiles.json ├── MetadataRemoveFiles.json └── MetadataSidecarFiles.json ├── main.m └── remove-keys.pl /.gitattributes: -------------------------------------------------------------------------------- 1 | Classes/DropVaultKeys.h filter=remove-keys -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .hg* 2 | .DS_Store 3 | build 4 | .svn -------------------------------------------------------------------------------- /Classes/DVCacheManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DVCacheManager.h -------------------------------------------------------------------------------- /Classes/DVCacheManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DVCacheManager.m -------------------------------------------------------------------------------- /Classes/DVErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DVErrorHandler.h -------------------------------------------------------------------------------- /Classes/DVErrorHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DVErrorHandler.m -------------------------------------------------------------------------------- /Classes/DVStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DVStrings.h -------------------------------------------------------------------------------- /Classes/DVTextEditController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DVTextEditController.h -------------------------------------------------------------------------------- /Classes/DVTextEditController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DVTextEditController.m -------------------------------------------------------------------------------- /Classes/DVTextEditController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DVTextEditController.xib -------------------------------------------------------------------------------- /Classes/DecryptionStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DecryptionStateMachine.h -------------------------------------------------------------------------------- /Classes/DecryptionStateMachine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DecryptionStateMachine.m -------------------------------------------------------------------------------- /Classes/DetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DetailViewController.h -------------------------------------------------------------------------------- /Classes/DetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DetailViewController.m -------------------------------------------------------------------------------- /Classes/DropVaultKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DropVaultKeys.h -------------------------------------------------------------------------------- /Classes/DropboxPrototypeAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DropboxPrototypeAppDelegate.h -------------------------------------------------------------------------------- /Classes/DropboxPrototypeAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/DropboxPrototypeAppDelegate.m -------------------------------------------------------------------------------- /Classes/KeyFileDecryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/KeyFileDecryptor.h -------------------------------------------------------------------------------- /Classes/KeyFileDecryptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/KeyFileDecryptor.m -------------------------------------------------------------------------------- /Classes/NSData+EncryptionHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/NSData+EncryptionHelpers.h -------------------------------------------------------------------------------- /Classes/NSData+EncryptionHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/NSData+EncryptionHelpers.m -------------------------------------------------------------------------------- /Classes/NSManagedObjectModel+UnitTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/NSManagedObjectModel+UnitTests.h -------------------------------------------------------------------------------- /Classes/NSManagedObjectModel+UnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/NSManagedObjectModel+UnitTests.m -------------------------------------------------------------------------------- /Classes/NSString+FileSystemHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/NSString+FileSystemHelper.h -------------------------------------------------------------------------------- /Classes/NSString+FileSystemHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/NSString+FileSystemHelper.m -------------------------------------------------------------------------------- /Classes/PasswordController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/PasswordController.h -------------------------------------------------------------------------------- /Classes/PasswordController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/PasswordController.m -------------------------------------------------------------------------------- /Classes/PasswordController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/PasswordController.xib -------------------------------------------------------------------------------- /Classes/Rfc2898DeriveBytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/Rfc2898DeriveBytes.h -------------------------------------------------------------------------------- /Classes/Rfc2898DeriveBytes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/Rfc2898DeriveBytes.m -------------------------------------------------------------------------------- /Classes/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/RootViewController.h -------------------------------------------------------------------------------- /Classes/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Classes/RootViewController.m -------------------------------------------------------------------------------- /ContentSrc/Sitefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/Sitefile -------------------------------------------------------------------------------- /ContentSrc/content/c-css/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/config.rb -------------------------------------------------------------------------------- /ContentSrc/content/c-css/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/images/grid.png -------------------------------------------------------------------------------- /ContentSrc/content/c-css/src/ie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/src/ie.scss -------------------------------------------------------------------------------- /ContentSrc/content/c-css/src/partials/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/src/partials/_base.scss -------------------------------------------------------------------------------- /ContentSrc/content/c-css/src/partials/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/src/partials/_form.scss -------------------------------------------------------------------------------- /ContentSrc/content/c-css/src/partials/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/src/partials/_page.scss -------------------------------------------------------------------------------- /ContentSrc/content/c-css/src/partials/_two_col.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/src/partials/_two_col.scss -------------------------------------------------------------------------------- /ContentSrc/content/c-css/src/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/src/print.scss -------------------------------------------------------------------------------- /ContentSrc/content/c-css/src/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/src/screen.scss -------------------------------------------------------------------------------- /ContentSrc/content/c-css/stylesheets/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/stylesheets/ie.css -------------------------------------------------------------------------------- /ContentSrc/content/c-css/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/stylesheets/print.css -------------------------------------------------------------------------------- /ContentSrc/content/c-css/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/c-css/stylesheets/screen.css -------------------------------------------------------------------------------- /ContentSrc/content/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/index.txt -------------------------------------------------------------------------------- /ContentSrc/content/unlinked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/unlinked.md -------------------------------------------------------------------------------- /ContentSrc/content/welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/content/welcome.md -------------------------------------------------------------------------------- /ContentSrc/layouts/default.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/layouts/default.haml -------------------------------------------------------------------------------- /ContentSrc/lib/breadcrumbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/lib/breadcrumbs.rb -------------------------------------------------------------------------------- /ContentSrc/output/.cairn: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ContentSrc/output/c-css/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/c-css/config.rb -------------------------------------------------------------------------------- /ContentSrc/output/c-css/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/c-css/images/grid.png -------------------------------------------------------------------------------- /ContentSrc/output/c-css/src/ie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/c-css/src/ie.scss -------------------------------------------------------------------------------- /ContentSrc/output/c-css/src/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/c-css/src/print.scss -------------------------------------------------------------------------------- /ContentSrc/output/c-css/src/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/c-css/src/screen.scss -------------------------------------------------------------------------------- /ContentSrc/output/c-css/stylesheets/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/c-css/stylesheets/ie.css -------------------------------------------------------------------------------- /ContentSrc/output/c-css/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/c-css/stylesheets/print.css -------------------------------------------------------------------------------- /ContentSrc/output/c-css/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/c-css/stylesheets/screen.css -------------------------------------------------------------------------------- /ContentSrc/output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/index.html -------------------------------------------------------------------------------- /ContentSrc/output/unlinked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/unlinked.html -------------------------------------------------------------------------------- /ContentSrc/output/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/output/welcome.html -------------------------------------------------------------------------------- /ContentSrc/templates/_partial.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/templates/_partial.erb -------------------------------------------------------------------------------- /ContentSrc/templates/page.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/ContentSrc/templates/page.erb -------------------------------------------------------------------------------- /DropVault.xcodeproj/brian.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropVault.xcodeproj/brian.mode1v3 -------------------------------------------------------------------------------- /DropVault.xcodeproj/brian.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropVault.xcodeproj/brian.pbxuser -------------------------------------------------------------------------------- /DropVault.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropVault.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DropVault.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropVault.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DropVault.xcodeproj/project.xcworkspace/xcuserdata/brian.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropVault.xcodeproj/project.xcworkspace/xcuserdata/brian.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DropVault.xcodeproj/project.xcworkspace/xcuserdata/brian.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropVault.xcodeproj/project.xcworkspace/xcuserdata/brian.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /DropVault.xcodeproj/xcuserdata/brian.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropVault.xcodeproj/xcuserdata/brian.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /DropVault.xcodeproj/xcuserdata/brian.xcuserdatad/xcschemes/DropboxPrototype.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropVault.xcodeproj/xcuserdata/brian.xcuserdatad/xcschemes/DropboxPrototype.xcscheme -------------------------------------------------------------------------------- /DropVault.xcodeproj/xcuserdata/brian.xcuserdatad/xcschemes/Unit Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropVault.xcodeproj/xcuserdata/brian.xcuserdatad/xcschemes/Unit Tests.xcscheme -------------------------------------------------------------------------------- /DropVault.xcodeproj/xcuserdata/brian.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropVault.xcodeproj/xcuserdata/brian.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DropboxSDK/DBAccountInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBAccountInfo.h -------------------------------------------------------------------------------- /DropboxSDK/DBAccountInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBAccountInfo.m -------------------------------------------------------------------------------- /DropboxSDK/DBCreateAccountController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBCreateAccountController.h -------------------------------------------------------------------------------- /DropboxSDK/DBCreateAccountController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBCreateAccountController.m -------------------------------------------------------------------------------- /DropboxSDK/DBError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBError.h -------------------------------------------------------------------------------- /DropboxSDK/DBError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBError.m -------------------------------------------------------------------------------- /DropboxSDK/DBLoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBLoadingView.h -------------------------------------------------------------------------------- /DropboxSDK/DBLoadingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBLoadingView.m -------------------------------------------------------------------------------- /DropboxSDK/DBLoginController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBLoginController.h -------------------------------------------------------------------------------- /DropboxSDK/DBLoginController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBLoginController.m -------------------------------------------------------------------------------- /DropboxSDK/DBMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBMetadata.h -------------------------------------------------------------------------------- /DropboxSDK/DBMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBMetadata.m -------------------------------------------------------------------------------- /DropboxSDK/DBQuota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBQuota.h -------------------------------------------------------------------------------- /DropboxSDK/DBQuota.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBQuota.m -------------------------------------------------------------------------------- /DropboxSDK/DBRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBRequest.h -------------------------------------------------------------------------------- /DropboxSDK/DBRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBRequest.m -------------------------------------------------------------------------------- /DropboxSDK/DBRestClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBRestClient.h -------------------------------------------------------------------------------- /DropboxSDK/DBRestClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBRestClient.m -------------------------------------------------------------------------------- /DropboxSDK/DBSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBSession.h -------------------------------------------------------------------------------- /DropboxSDK/DBSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DBSession.m -------------------------------------------------------------------------------- /DropboxSDK/DropboxSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/DropboxSDK.h -------------------------------------------------------------------------------- /DropboxSDK/JSON/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/JSON.h -------------------------------------------------------------------------------- /DropboxSDK/JSON/NSObject+SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/NSObject+SBJSON.h -------------------------------------------------------------------------------- /DropboxSDK/JSON/NSObject+SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/NSObject+SBJSON.m -------------------------------------------------------------------------------- /DropboxSDK/JSON/NSString+SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/NSString+SBJSON.h -------------------------------------------------------------------------------- /DropboxSDK/JSON/NSString+SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/NSString+SBJSON.m -------------------------------------------------------------------------------- /DropboxSDK/JSON/SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/SBJSON.h -------------------------------------------------------------------------------- /DropboxSDK/JSON/SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/SBJSON.m -------------------------------------------------------------------------------- /DropboxSDK/JSON/SBJsonBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/SBJsonBase.h -------------------------------------------------------------------------------- /DropboxSDK/JSON/SBJsonBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/SBJsonBase.m -------------------------------------------------------------------------------- /DropboxSDK/JSON/SBJsonParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/SBJsonParser.h -------------------------------------------------------------------------------- /DropboxSDK/JSON/SBJsonParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/SBJsonParser.m -------------------------------------------------------------------------------- /DropboxSDK/JSON/SBJsonWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/SBJsonWriter.h -------------------------------------------------------------------------------- /DropboxSDK/JSON/SBJsonWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/JSON/SBJsonWriter.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/Crypto/Base64Transcoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/Crypto/Base64Transcoder.c -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/Crypto/Base64Transcoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/Crypto/Base64Transcoder.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPDebug.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuth.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthAPI.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthAPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthAPI.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthAPIRequestLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthAPIRequestLoader.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthAPIRequestLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthAPIRequestLoader.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthAuthenticationMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthAuthenticationMethod.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthAuthenticationMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthAuthenticationMethod.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthAuthenticationMethodOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthAuthenticationMethodOAuth.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthAuthenticationMethodOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthAuthenticationMethodOAuth.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthConnection.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthConnection.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthCredentiaIConcreteStore+KeychainAdditionsMac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthCredentiaIConcreteStore+KeychainAdditionsMac.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthCredentialConcreteStore+KeychainAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthCredentialConcreteStore+KeychainAdditions.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthCredentialConcreteStore+KeychainAdditionsiPhone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthCredentialConcreteStore+KeychainAdditionsiPhone.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthCredentialConcreteStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthCredentialConcreteStore.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthCredentialConcreteStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthCredentialConcreteStore.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthCredentialStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthCredentialStore.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthParameterFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthParameterFactory.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthSignatureParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthSignatureParameter.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthSignatureParameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthSignatureParameter.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthURLRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthURLRequest.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthURLRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthURLRequest.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthURLResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthURLResponse.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPOAuthURLResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPOAuthURLResponse.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPURLRequestParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPURLRequestParameter.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/MPURLRequestParameter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/MPURLRequestParameter.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/NSString+URLEscapingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/NSString+URLEscapingAdditions.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/NSString+URLEscapingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/NSString+URLEscapingAdditions.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/NSURL+MPURLParameterAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/NSURL+MPURLParameterAdditions.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/NSURL+MPURLParameterAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/NSURL+MPURLParameterAdditions.m -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/NSURLResponse+Encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/NSURLResponse+Encoding.h -------------------------------------------------------------------------------- /DropboxSDK/MPOAuth/NSURLResponse+Encoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/MPOAuth/NSURLResponse+Encoding.m -------------------------------------------------------------------------------- /DropboxSDK/NSString+Dropbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/NSString+Dropbox.h -------------------------------------------------------------------------------- /DropboxSDK/NSString+Dropbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/NSString+Dropbox.m -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_background.png -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_create_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_create_account.png -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_create_account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_create_account@2x.png -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_create_account_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_create_account_button.png -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_create_account_button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_create_account_button_down.png -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_link_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_link_button.png -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_link_button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_link_button_down.png -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_link_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_link_header.png -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_link_header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_link_header@2x.png -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_logo.png -------------------------------------------------------------------------------- /DropboxSDK/Resources/db_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/DropboxSDK/Resources/db_logo@2x.png -------------------------------------------------------------------------------- /GTM/GTMCALayer+UnitTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMCALayer+UnitTesting.h -------------------------------------------------------------------------------- /GTM/GTMCALayer+UnitTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMCALayer+UnitTesting.m -------------------------------------------------------------------------------- /GTM/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMDefines.h -------------------------------------------------------------------------------- /GTM/GTMGarbageCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMGarbageCollection.h -------------------------------------------------------------------------------- /GTM/GTMIPhoneUnitTestDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMIPhoneUnitTestDelegate.h -------------------------------------------------------------------------------- /GTM/GTMIPhoneUnitTestDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMIPhoneUnitTestDelegate.m -------------------------------------------------------------------------------- /GTM/GTMIPhoneUnitTestMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMIPhoneUnitTestMain.m -------------------------------------------------------------------------------- /GTM/GTMNSNumber+64Bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMNSNumber+64Bit.h -------------------------------------------------------------------------------- /GTM/GTMNSObject+UnitTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMNSObject+UnitTesting.h -------------------------------------------------------------------------------- /GTM/GTMNSObject+UnitTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMNSObject+UnitTesting.m -------------------------------------------------------------------------------- /GTM/GTMObjC2Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMObjC2Runtime.h -------------------------------------------------------------------------------- /GTM/GTMObjC2Runtime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMObjC2Runtime.m -------------------------------------------------------------------------------- /GTM/GTMRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMRegex.h -------------------------------------------------------------------------------- /GTM/GTMRegex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMRegex.m -------------------------------------------------------------------------------- /GTM/GTMSenTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMSenTestCase.h -------------------------------------------------------------------------------- /GTM/GTMSenTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMSenTestCase.m -------------------------------------------------------------------------------- /GTM/GTMSystemVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMSystemVersion.h -------------------------------------------------------------------------------- /GTM/GTMSystemVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMSystemVersion.m -------------------------------------------------------------------------------- /GTM/GTMUIKit+UnitTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMUIKit+UnitTesting.h -------------------------------------------------------------------------------- /GTM/GTMUIKit+UnitTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMUIKit+UnitTesting.m -------------------------------------------------------------------------------- /GTM/GTMUnitTestDevLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMUnitTestDevLog.h -------------------------------------------------------------------------------- /GTM/GTMUnitTestDevLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/GTM/GTMUnitTestDevLog.m -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Info.plist -------------------------------------------------------------------------------- /Libraries/Headers/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Libraries/Headers/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Libraries/Headers/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Libraries/Headers/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Libraries/Headers/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Libraries/Headers/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Libraries/Headers/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Libraries/Headers/OCMock/OCMock.h -------------------------------------------------------------------------------- /Libraries/Headers/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Libraries/Headers/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Libraries/Headers/OCMock/OCMockRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Libraries/Headers/OCMock/OCMockRecorder.h -------------------------------------------------------------------------------- /Libraries/libOCMock.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Libraries/libOCMock.a -------------------------------------------------------------------------------- /Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Prefix.pch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/README.md -------------------------------------------------------------------------------- /Resources/54-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/54-lock.png -------------------------------------------------------------------------------- /Resources/DBConfidential-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/DBConfidential-512.png -------------------------------------------------------------------------------- /Resources/DBConfidential-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/DBConfidential-72.png -------------------------------------------------------------------------------- /Resources/DBConfidential.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/DBConfidential.acorn -------------------------------------------------------------------------------- /Resources/DetailView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/DetailView.xib -------------------------------------------------------------------------------- /Resources/DropboxPrototype.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/DropboxPrototype.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Resources/DropboxPrototype.xcdatamodeld/DropboxPrototype.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/DropboxPrototype.xcdatamodeld/DropboxPrototype.xcdatamodel/elements -------------------------------------------------------------------------------- /Resources/DropboxPrototype.xcdatamodeld/DropboxPrototype.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/DropboxPrototype.xcdatamodeld/DropboxPrototype.xcdatamodel/layout -------------------------------------------------------------------------------- /Resources/FileIcons/excel48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/excel48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/folder48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/folder48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/folder_gray48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/folder_gray48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/folder_photos48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/folder_photos48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/folder_public48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/folder_public48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/folder_star48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/folder_star48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/folder_user48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/folder_user48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/music48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/music48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/package48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/package48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_acrobat48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_acrobat48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_actionscript48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_actionscript48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_c48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_c48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_code48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_code48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_cplusplus48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_cplusplus48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_csharp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_csharp.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_cup48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_cup48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_dvd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_dvd.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_flash48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_flash48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_gear48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_gear48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_h48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_h48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_paint48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_paint48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_php48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_php48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_picture48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_picture48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_ruby48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_ruby48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_text48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_text48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_tux48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_tux48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_vector48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_vector48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_visualstudio48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_visualstudio48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/page_white_zip48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/page_white_zip48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/powerpoint48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/powerpoint48.gif -------------------------------------------------------------------------------- /Resources/FileIcons/word48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/FileIcons/word48.gif -------------------------------------------------------------------------------- /Resources/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/MainWindow.xib -------------------------------------------------------------------------------- /Resources/test2.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Resources/test2.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Tests/DVCacheManagerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/DVCacheManagerTest.m -------------------------------------------------------------------------------- /Tests/DVTextEditControllerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/DVTextEditControllerTest.m -------------------------------------------------------------------------------- /Tests/DecryptionStateMachineTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/DecryptionStateMachineTest.m -------------------------------------------------------------------------------- /Tests/DetailViewControllerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/DetailViewControllerTest.m -------------------------------------------------------------------------------- /Tests/DropboxPrototypeAppDelegateTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/DropboxPrototypeAppDelegateTest.m -------------------------------------------------------------------------------- /Tests/KeyFileDecryptorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/KeyFileDecryptorTest.m -------------------------------------------------------------------------------- /Tests/NSData+EncryptionHelpersTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/NSData+EncryptionHelpersTest.m -------------------------------------------------------------------------------- /Tests/NSString+FileSystemHelperTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/NSString+FileSystemHelperTest.m -------------------------------------------------------------------------------- /Tests/PasswordControllerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/PasswordControllerTest.m -------------------------------------------------------------------------------- /Tests/Rfc2898DeriveBytesTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/Rfc2898DeriveBytesTest.m -------------------------------------------------------------------------------- /Tests/RootViewControllerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/RootViewControllerTest.m -------------------------------------------------------------------------------- /Tests/simple-metadata.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/Tests/simple-metadata.plist -------------------------------------------------------------------------------- /UnitTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTest-Info.plist -------------------------------------------------------------------------------- /UnitTestData/20110124210018-10545998.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-10545998.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-10545998.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-10545998.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-1676EF1B.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-1676EF1B.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-1676EF1B.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-1676EF1B.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-1B2F353C.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-1B2F353C.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-1B2F353C.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-1B2F353C.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-26185D7F.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-26185D7F.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-26185D7F.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-26185D7F.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-29D91325.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-29D91325.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-29D91325.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-29D91325.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-5A18C74F.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-5A18C74F.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-5A18C74F.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-5A18C74F.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-81C35ABD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-81C35ABD.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-81C35ABD.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-81C35ABD.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-93D80E71.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-93D80E71.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-93D80E71.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-93D80E71.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-98558734.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-98558734.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-98558734.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-98558734.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-990373B9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-990373B9.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-990373B9.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-990373B9.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-AEF7647D.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-AEF7647D.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-AEF7647D.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-AEF7647D.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-B6608D07.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-B6608D07.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-B6608D07.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-B6608D07.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-C40AA0DD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-C40AA0DD.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-C40AA0DD.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-C40AA0DD.key -------------------------------------------------------------------------------- /UnitTestData/20110124210018-D9BC656C.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-D9BC656C.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210018-D9BC656C.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210018-D9BC656C.key -------------------------------------------------------------------------------- /UnitTestData/20110124210019-9BF7D555.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210019-9BF7D555.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210019-9BF7D555.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210019-9BF7D555.key -------------------------------------------------------------------------------- /UnitTestData/20110124210019-F3C18527.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210019-F3C18527.dat -------------------------------------------------------------------------------- /UnitTestData/20110124210019-F3C18527.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/20110124210019-F3C18527.key -------------------------------------------------------------------------------- /UnitTestData/DropBoxMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/DropBoxMetadata.json -------------------------------------------------------------------------------- /UnitTestData/MetadataAddFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/MetadataAddFiles.json -------------------------------------------------------------------------------- /UnitTestData/MetadataRemoveFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/MetadataRemoveFiles.json -------------------------------------------------------------------------------- /UnitTestData/MetadataSidecarFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/UnitTestData/MetadataSidecarFiles.json -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/main.m -------------------------------------------------------------------------------- /remove-keys.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdewey/DropVault/HEAD/remove-keys.pl --------------------------------------------------------------------------------