gitextract_12_25s_m/ ├── .gitignore ├── .tx/ │ └── config ├── Dependencies/ │ ├── Zxcvbn/ │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── Zxcvbn/ │ │ │ ├── DBMatcher.h │ │ │ ├── DBMatcher.m │ │ │ ├── DBScorer.h │ │ │ ├── DBScorer.m │ │ │ ├── DBZxcvbn.h │ │ │ ├── DBZxcvbn.m │ │ │ ├── Info.plist │ │ │ ├── Zxcvbn.h │ │ │ └── generated/ │ │ │ ├── adjacency_graphs.json │ │ │ └── frequency_lists.json │ │ └── Zxcvbn.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Zxcvbn.xcscheme │ └── zipkit/ │ ├── COPYING.TXT │ ├── Credits.html │ ├── README.md │ ├── 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 │ └── ZipKit.xcodeproj/ │ └── project.pbxproj ├── 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 │ │ │ └── xmark.seal.fill.imageset/ │ │ │ └── Contents.json │ │ ├── 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