├── .gitignore ├── .tx └── config ├── Dependencies ├── Zxcvbn │ ├── .gitignore │ ├── LICENSE.txt │ ├── Zxcvbn.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Zxcvbn.xcscheme │ └── Zxcvbn │ │ ├── DBMatcher.h │ │ ├── DBMatcher.m │ │ ├── DBScorer.h │ │ ├── DBScorer.m │ │ ├── DBZxcvbn.h │ │ ├── DBZxcvbn.m │ │ ├── Info.plist │ │ ├── Zxcvbn.h │ │ └── generated │ │ ├── adjacency_graphs.json │ │ └── frequency_lists.json └── zipkit │ ├── COPYING.TXT │ ├── Credits.html │ ├── README.md │ ├── ZipKit.xcodeproj │ └── project.pbxproj │ └── ZipKit │ ├── GMAppleDouble+ZKAdditions.h │ ├── GMAppleDouble+ZKAdditions.m │ ├── MacFUSE │ ├── COPYING.TXT │ ├── GMAppleDouble.h │ └── GMAppleDouble.m │ ├── NSData+ZKAdditions.h │ ├── NSData+ZKAdditions.m │ ├── NSDate+ZKAdditions.h │ ├── NSDate+ZKAdditions.m │ ├── NSDictionary+ZKAdditions.h │ ├── NSDictionary+ZKAdditions.m │ ├── NSFileHandle+ZKAdditions.h │ ├── NSFileHandle+ZKAdditions.m │ ├── NSFileManager+ZKAdditions.h │ ├── NSFileManager+ZKAdditions.m │ ├── NSString+ZKAdditions.h │ ├── NSString+ZKAdditions.m │ ├── ZKArchive.h │ ├── ZKArchive.m │ ├── ZKCDHeader.h │ ├── ZKCDHeader.m │ ├── ZKCDTrailer.h │ ├── ZKCDTrailer.m │ ├── ZKCDTrailer64.h │ ├── ZKCDTrailer64.m │ ├── ZKCDTrailer64Locator.h │ ├── ZKCDTrailer64Locator.m │ ├── ZKDataArchive.h │ ├── ZKDataArchive.m │ ├── ZKDefs.h │ ├── ZKDefs.m │ ├── ZKFileArchive.h │ ├── ZKFileArchive.m │ ├── ZKLFHeader.h │ ├── ZKLFHeader.m │ ├── ZKLog.h │ ├── ZKLog.m │ ├── ZipKit-Info.plist │ ├── ZipKit-Prefix.pch │ └── ZipKit.h ├── GPGServices.xcodeproj └── project.pbxproj ├── LICENSE.txt ├── Makefile ├── Readme.md ├── Release Notes ├── 1.10.1.md ├── 1.10.md ├── 1.10b1.md ├── 1.10b2.md ├── 1.10b5.md ├── 1.10b6.md ├── 1.11.md ├── 1.7.4.json ├── 1.8.json ├── 1.9.1.md └── 1.9.2.md ├── Resources ├── Base.lproj │ ├── PrivateKeyChooserWindow.xib │ ├── RecipientWindow.xib │ └── VerificationResultsWindow.xib ├── GPGSAlert.xib ├── Images │ ├── GPGServices.icns │ ├── Media.xcassets │ │ ├── Contents.json │ │ ├── checkmark.seal.fill.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark.pdf │ │ └── xmark.seal.fill.imageset │ │ │ ├── Contents.json │ │ │ └── xmark.pdf │ ├── asc.icns │ ├── lock.icns │ └── sig.icns ├── InProgressWindow.xib ├── Info.plist ├── MainMenu.xib ├── SimpleTextWindow.xib ├── cs.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── PrivateKeyChooserWindow.strings │ ├── RecipientWindow.strings │ ├── ServicesMenu.strings │ └── VerificationResultsWindow.strings ├── de.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── PrivateKeyChooserWindow.strings │ ├── RecipientWindow.strings │ ├── ServicesMenu.strings │ └── VerificationResultsWindow.strings ├── en.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── PrivateKeyChooserWindow.strings │ ├── RecipientWindow.strings │ ├── ServicesMenu.strings │ └── VerificationResultsWindow.strings ├── fr.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── PrivateKeyChooserWindow.strings │ ├── RecipientWindow.strings │ ├── ServicesMenu.strings │ └── VerificationResultsWindow.strings ├── it.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── PrivateKeyChooserWindow.strings │ ├── RecipientWindow.strings │ ├── ServicesMenu.strings │ └── VerificationResultsWindow.strings ├── ja.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── PrivateKeyChooserWindow.strings │ ├── RecipientWindow.strings │ ├── ServicesMenu.strings │ └── VerificationResultsWindow.strings ├── pt.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── PrivateKeyChooserWindow.strings │ ├── RecipientWindow.strings │ ├── ServicesMenu.strings │ └── VerificationResultsWindow.strings └── sv.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── PrivateKeyChooserWindow.strings │ ├── RecipientWindow.strings │ ├── ServicesMenu.strings │ └── VerificationResultsWindow.strings ├── Source ├── DummyVerificationController.h ├── DummyVerificationController.m ├── FileVerificationDataSource.h ├── FileVerificationDataSource.m ├── GKFingerprintTransformer.h ├── GKFingerprintTransformer.m ├── GKPasswordStrengthIndicator.h ├── GKPasswordStrengthIndicator.m ├── GPGAltTitleTableColumn.h ├── GPGAltTitleTableColumn.m ├── GPGKey+utils.h ├── GPGKey+utils.m ├── GPGSAlert.h ├── GPGSAlert.m ├── GPGServices.h ├── GPGServices.m ├── GPGServices_Prefix.pch ├── GPGServices_Private.h ├── GPGTempFile.h ├── GPGTempFile.m ├── GPGVerificationResultCellView.h ├── GPGVerificationResultCellView.m ├── InProgressWindowController.h ├── InProgressWindowController.m ├── KeyChooserDataSource.h ├── KeyChooserDataSource.m ├── KeyChooserWindowController.h ├── KeyChooserWindowController.m ├── Localization.h ├── Localization.m ├── NSArray+join.h ├── NSArray+join.m ├── NSPredicate+negate.h ├── NSPredicate+negate.m ├── RecipientWindowController.h ├── RecipientWindowController.m ├── ServiceWorker.h ├── ServiceWorker.m ├── ServiceWorkerDelegate.h ├── ServiceWrappedArgs.h ├── ServiceWrappedArgs.m ├── ServiceWrappedOperation.h ├── ServiceWrappedOperation.m ├── ShortcutHandlingFields.h ├── ShortcutHandlingFields.m ├── SimpleTextView.h ├── SimpleTextView.m ├── SimpleTextWindow.h ├── SimpleTextWindow.m ├── VerificationResultsWindow.h ├── VerificationResultsWindow.m ├── WorkerProgressViewItem.h ├── WorkerProgressViewItem.m ├── ZipOperation.h ├── ZipOperation.m └── main.m └── Version.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/.tx/config -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/.gitignore -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/LICENSE.txt -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn.xcodeproj/xcshareddata/xcschemes/Zxcvbn.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn.xcodeproj/xcshareddata/xcschemes/Zxcvbn.xcscheme -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn/DBMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn/DBMatcher.h -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn/DBMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn/DBMatcher.m -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn/DBScorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn/DBScorer.h -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn/DBScorer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn/DBScorer.m -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn/DBZxcvbn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn/DBZxcvbn.h -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn/DBZxcvbn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn/DBZxcvbn.m -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn/Info.plist -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn/Zxcvbn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn/Zxcvbn.h -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn/generated/adjacency_graphs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn/generated/adjacency_graphs.json -------------------------------------------------------------------------------- /Dependencies/Zxcvbn/Zxcvbn/generated/frequency_lists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/Zxcvbn/Zxcvbn/generated/frequency_lists.json -------------------------------------------------------------------------------- /Dependencies/zipkit/COPYING.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/COPYING.TXT -------------------------------------------------------------------------------- /Dependencies/zipkit/Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/Credits.html -------------------------------------------------------------------------------- /Dependencies/zipkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/README.md -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/GMAppleDouble+ZKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/GMAppleDouble+ZKAdditions.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/GMAppleDouble+ZKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/GMAppleDouble+ZKAdditions.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/MacFUSE/COPYING.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/MacFUSE/COPYING.TXT -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/MacFUSE/GMAppleDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/MacFUSE/GMAppleDouble.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/MacFUSE/GMAppleDouble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/MacFUSE/GMAppleDouble.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSData+ZKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSData+ZKAdditions.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSData+ZKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSData+ZKAdditions.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSDate+ZKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSDate+ZKAdditions.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSDate+ZKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSDate+ZKAdditions.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSDictionary+ZKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSDictionary+ZKAdditions.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSDictionary+ZKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSDictionary+ZKAdditions.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSFileHandle+ZKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSFileHandle+ZKAdditions.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSFileHandle+ZKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSFileHandle+ZKAdditions.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSFileManager+ZKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSFileManager+ZKAdditions.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSFileManager+ZKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSFileManager+ZKAdditions.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSString+ZKAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSString+ZKAdditions.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/NSString+ZKAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/NSString+ZKAdditions.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKArchive.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKArchive.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKCDHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKCDHeader.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKCDHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKCDHeader.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKCDTrailer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKCDTrailer.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKCDTrailer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKCDTrailer.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKCDTrailer64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKCDTrailer64.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKCDTrailer64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKCDTrailer64.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKCDTrailer64Locator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKCDTrailer64Locator.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKCDTrailer64Locator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKCDTrailer64Locator.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKDataArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKDataArchive.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKDataArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKDataArchive.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKDefs.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKDefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKDefs.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKFileArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKFileArchive.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKFileArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKFileArchive.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKLFHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKLFHeader.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKLFHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKLFHeader.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKLog.h -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZKLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZKLog.m -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZipKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZipKit-Info.plist -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZipKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZipKit-Prefix.pch -------------------------------------------------------------------------------- /Dependencies/zipkit/ZipKit/ZipKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Dependencies/zipkit/ZipKit/ZipKit.h -------------------------------------------------------------------------------- /GPGServices.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/GPGServices.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Readme.md -------------------------------------------------------------------------------- /Release Notes/1.10.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.10.1.md -------------------------------------------------------------------------------- /Release Notes/1.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.10.md -------------------------------------------------------------------------------- /Release Notes/1.10b1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.10b1.md -------------------------------------------------------------------------------- /Release Notes/1.10b2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.10b2.md -------------------------------------------------------------------------------- /Release Notes/1.10b5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.10b5.md -------------------------------------------------------------------------------- /Release Notes/1.10b6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.10b6.md -------------------------------------------------------------------------------- /Release Notes/1.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.11.md -------------------------------------------------------------------------------- /Release Notes/1.7.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.7.4.json -------------------------------------------------------------------------------- /Release Notes/1.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.8.json -------------------------------------------------------------------------------- /Release Notes/1.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.9.1.md -------------------------------------------------------------------------------- /Release Notes/1.9.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Release Notes/1.9.2.md -------------------------------------------------------------------------------- /Resources/Base.lproj/PrivateKeyChooserWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Base.lproj/PrivateKeyChooserWindow.xib -------------------------------------------------------------------------------- /Resources/Base.lproj/RecipientWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Base.lproj/RecipientWindow.xib -------------------------------------------------------------------------------- /Resources/Base.lproj/VerificationResultsWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Base.lproj/VerificationResultsWindow.xib -------------------------------------------------------------------------------- /Resources/GPGSAlert.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/GPGSAlert.xib -------------------------------------------------------------------------------- /Resources/Images/GPGServices.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Images/GPGServices.icns -------------------------------------------------------------------------------- /Resources/Images/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Images/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/Images/Media.xcassets/checkmark.seal.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Images/Media.xcassets/checkmark.seal.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Images/Media.xcassets/checkmark.seal.fill.imageset/checkmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Images/Media.xcassets/checkmark.seal.fill.imageset/checkmark.pdf -------------------------------------------------------------------------------- /Resources/Images/Media.xcassets/xmark.seal.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Images/Media.xcassets/xmark.seal.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Images/Media.xcassets/xmark.seal.fill.imageset/xmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Images/Media.xcassets/xmark.seal.fill.imageset/xmark.pdf -------------------------------------------------------------------------------- /Resources/Images/asc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Images/asc.icns -------------------------------------------------------------------------------- /Resources/Images/lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Images/lock.icns -------------------------------------------------------------------------------- /Resources/Images/sig.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Images/sig.icns -------------------------------------------------------------------------------- /Resources/InProgressWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/InProgressWindow.xib -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/MainMenu.xib -------------------------------------------------------------------------------- /Resources/SimpleTextWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/SimpleTextWindow.xib -------------------------------------------------------------------------------- /Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/cs.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/cs.lproj/PrivateKeyChooserWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/cs.lproj/PrivateKeyChooserWindow.strings -------------------------------------------------------------------------------- /Resources/cs.lproj/RecipientWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/cs.lproj/RecipientWindow.strings -------------------------------------------------------------------------------- /Resources/cs.lproj/ServicesMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/cs.lproj/ServicesMenu.strings -------------------------------------------------------------------------------- /Resources/cs.lproj/VerificationResultsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/cs.lproj/VerificationResultsWindow.strings -------------------------------------------------------------------------------- /Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/de.lproj/PrivateKeyChooserWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/de.lproj/PrivateKeyChooserWindow.strings -------------------------------------------------------------------------------- /Resources/de.lproj/RecipientWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/de.lproj/RecipientWindow.strings -------------------------------------------------------------------------------- /Resources/de.lproj/ServicesMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/de.lproj/ServicesMenu.strings -------------------------------------------------------------------------------- /Resources/de.lproj/VerificationResultsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/de.lproj/VerificationResultsWindow.strings -------------------------------------------------------------------------------- /Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/en.lproj/PrivateKeyChooserWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/en.lproj/PrivateKeyChooserWindow.strings -------------------------------------------------------------------------------- /Resources/en.lproj/RecipientWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/en.lproj/RecipientWindow.strings -------------------------------------------------------------------------------- /Resources/en.lproj/ServicesMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/en.lproj/ServicesMenu.strings -------------------------------------------------------------------------------- /Resources/en.lproj/VerificationResultsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/en.lproj/VerificationResultsWindow.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/PrivateKeyChooserWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/fr.lproj/PrivateKeyChooserWindow.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/RecipientWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/fr.lproj/RecipientWindow.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/ServicesMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/fr.lproj/ServicesMenu.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/VerificationResultsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/fr.lproj/VerificationResultsWindow.strings -------------------------------------------------------------------------------- /Resources/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/it.lproj/PrivateKeyChooserWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/it.lproj/PrivateKeyChooserWindow.strings -------------------------------------------------------------------------------- /Resources/it.lproj/RecipientWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/it.lproj/RecipientWindow.strings -------------------------------------------------------------------------------- /Resources/it.lproj/ServicesMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/it.lproj/ServicesMenu.strings -------------------------------------------------------------------------------- /Resources/it.lproj/VerificationResultsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/it.lproj/VerificationResultsWindow.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/PrivateKeyChooserWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/ja.lproj/PrivateKeyChooserWindow.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/RecipientWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/ja.lproj/RecipientWindow.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/ServicesMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/ja.lproj/ServicesMenu.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/VerificationResultsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/ja.lproj/VerificationResultsWindow.strings -------------------------------------------------------------------------------- /Resources/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/pt.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/pt.lproj/PrivateKeyChooserWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/pt.lproj/PrivateKeyChooserWindow.strings -------------------------------------------------------------------------------- /Resources/pt.lproj/RecipientWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/pt.lproj/RecipientWindow.strings -------------------------------------------------------------------------------- /Resources/pt.lproj/ServicesMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/pt.lproj/ServicesMenu.strings -------------------------------------------------------------------------------- /Resources/pt.lproj/VerificationResultsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/pt.lproj/VerificationResultsWindow.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/sv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/PrivateKeyChooserWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/sv.lproj/PrivateKeyChooserWindow.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/RecipientWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/sv.lproj/RecipientWindow.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/ServicesMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/sv.lproj/ServicesMenu.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/VerificationResultsWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Resources/sv.lproj/VerificationResultsWindow.strings -------------------------------------------------------------------------------- /Source/DummyVerificationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/DummyVerificationController.h -------------------------------------------------------------------------------- /Source/DummyVerificationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/DummyVerificationController.m -------------------------------------------------------------------------------- /Source/FileVerificationDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/FileVerificationDataSource.h -------------------------------------------------------------------------------- /Source/FileVerificationDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/FileVerificationDataSource.m -------------------------------------------------------------------------------- /Source/GKFingerprintTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GKFingerprintTransformer.h -------------------------------------------------------------------------------- /Source/GKFingerprintTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GKFingerprintTransformer.m -------------------------------------------------------------------------------- /Source/GKPasswordStrengthIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GKPasswordStrengthIndicator.h -------------------------------------------------------------------------------- /Source/GKPasswordStrengthIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GKPasswordStrengthIndicator.m -------------------------------------------------------------------------------- /Source/GPGAltTitleTableColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGAltTitleTableColumn.h -------------------------------------------------------------------------------- /Source/GPGAltTitleTableColumn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGAltTitleTableColumn.m -------------------------------------------------------------------------------- /Source/GPGKey+utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGKey+utils.h -------------------------------------------------------------------------------- /Source/GPGKey+utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGKey+utils.m -------------------------------------------------------------------------------- /Source/GPGSAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGSAlert.h -------------------------------------------------------------------------------- /Source/GPGSAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGSAlert.m -------------------------------------------------------------------------------- /Source/GPGServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGServices.h -------------------------------------------------------------------------------- /Source/GPGServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGServices.m -------------------------------------------------------------------------------- /Source/GPGServices_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGServices_Prefix.pch -------------------------------------------------------------------------------- /Source/GPGServices_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGServices_Private.h -------------------------------------------------------------------------------- /Source/GPGTempFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGTempFile.h -------------------------------------------------------------------------------- /Source/GPGTempFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGTempFile.m -------------------------------------------------------------------------------- /Source/GPGVerificationResultCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGVerificationResultCellView.h -------------------------------------------------------------------------------- /Source/GPGVerificationResultCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/GPGVerificationResultCellView.m -------------------------------------------------------------------------------- /Source/InProgressWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/InProgressWindowController.h -------------------------------------------------------------------------------- /Source/InProgressWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/InProgressWindowController.m -------------------------------------------------------------------------------- /Source/KeyChooserDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/KeyChooserDataSource.h -------------------------------------------------------------------------------- /Source/KeyChooserDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/KeyChooserDataSource.m -------------------------------------------------------------------------------- /Source/KeyChooserWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/KeyChooserWindowController.h -------------------------------------------------------------------------------- /Source/KeyChooserWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/KeyChooserWindowController.m -------------------------------------------------------------------------------- /Source/Localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/Localization.h -------------------------------------------------------------------------------- /Source/Localization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/Localization.m -------------------------------------------------------------------------------- /Source/NSArray+join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/NSArray+join.h -------------------------------------------------------------------------------- /Source/NSArray+join.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/NSArray+join.m -------------------------------------------------------------------------------- /Source/NSPredicate+negate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/NSPredicate+negate.h -------------------------------------------------------------------------------- /Source/NSPredicate+negate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/NSPredicate+negate.m -------------------------------------------------------------------------------- /Source/RecipientWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/RecipientWindowController.h -------------------------------------------------------------------------------- /Source/RecipientWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/RecipientWindowController.m -------------------------------------------------------------------------------- /Source/ServiceWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ServiceWorker.h -------------------------------------------------------------------------------- /Source/ServiceWorker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ServiceWorker.m -------------------------------------------------------------------------------- /Source/ServiceWorkerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ServiceWorkerDelegate.h -------------------------------------------------------------------------------- /Source/ServiceWrappedArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ServiceWrappedArgs.h -------------------------------------------------------------------------------- /Source/ServiceWrappedArgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ServiceWrappedArgs.m -------------------------------------------------------------------------------- /Source/ServiceWrappedOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ServiceWrappedOperation.h -------------------------------------------------------------------------------- /Source/ServiceWrappedOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ServiceWrappedOperation.m -------------------------------------------------------------------------------- /Source/ShortcutHandlingFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ShortcutHandlingFields.h -------------------------------------------------------------------------------- /Source/ShortcutHandlingFields.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ShortcutHandlingFields.m -------------------------------------------------------------------------------- /Source/SimpleTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/SimpleTextView.h -------------------------------------------------------------------------------- /Source/SimpleTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/SimpleTextView.m -------------------------------------------------------------------------------- /Source/SimpleTextWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/SimpleTextWindow.h -------------------------------------------------------------------------------- /Source/SimpleTextWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/SimpleTextWindow.m -------------------------------------------------------------------------------- /Source/VerificationResultsWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/VerificationResultsWindow.h -------------------------------------------------------------------------------- /Source/VerificationResultsWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/VerificationResultsWindow.m -------------------------------------------------------------------------------- /Source/WorkerProgressViewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/WorkerProgressViewItem.h -------------------------------------------------------------------------------- /Source/WorkerProgressViewItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/WorkerProgressViewItem.m -------------------------------------------------------------------------------- /Source/ZipOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ZipOperation.h -------------------------------------------------------------------------------- /Source/ZipOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/ZipOperation.m -------------------------------------------------------------------------------- /Source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Source/main.m -------------------------------------------------------------------------------- /Version.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/GPGServices/HEAD/Version.config --------------------------------------------------------------------------------