├── .gitignore ├── Dependencies └── .gitignore ├── Makefile ├── Resources ├── COPYING ├── English.lproj │ ├── Pinentry.xib │ └── Pinentry.xib.strings ├── German.lproj │ ├── Pinentry.xib │ └── Pinentry.xib.strings ├── Icon.icns ├── Info.plist ├── Main.xib └── old │ ├── English.lproj │ └── Pinentry.xib │ ├── German.lproj │ └── Pinentry.xib │ └── Hier nichts bearbeiten oder entfernen! ├── Source ├── AppDelegate.h ├── AppDelegate.m ├── GPGDefaults.h ├── GPGDefaults.m ├── KeychainSupport.h ├── KeychainSupport.m ├── PassphraseLengthFormatter.h ├── PassphraseLengthFormatter.m ├── PinentryController.h ├── PinentryController.m ├── ShortcutHandlingFields.h ├── ShortcutHandlingFields.m ├── main.m ├── pinentry-0.9.4 │ ├── assuan │ │ ├── assuan-buffer.c │ │ ├── assuan-defs.h │ │ ├── assuan-errors.c │ │ ├── assuan-handler.c │ │ ├── assuan-listen.c │ │ ├── assuan-pipe-server.c │ │ ├── assuan-util.c │ │ └── assuan.h │ ├── config.h │ ├── pinentry │ │ ├── argparse.c │ │ ├── argparse.h │ │ ├── password-cache.c │ │ ├── password-cache.h │ │ ├── pinentry-curses.c │ │ ├── pinentry-curses.h │ │ ├── pinentry.c │ │ └── pinentry.h │ └── secmem │ │ ├── memory.h │ │ ├── secmem-util.h │ │ ├── secmem.c │ │ ├── util.c │ │ └── util.h ├── pinentry-current └── prefix.pch ├── Utilities ├── gpg-agent_cacheid.patch ├── pinentry-cache_id.patch └── pinentry-sigpipe.patch ├── Version.config └── pinentry-mac.xcodeproj └── project.pbxproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/.gitignore -------------------------------------------------------------------------------- /Dependencies/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Makefile -------------------------------------------------------------------------------- /Resources/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/COPYING -------------------------------------------------------------------------------- /Resources/English.lproj/Pinentry.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/English.lproj/Pinentry.xib -------------------------------------------------------------------------------- /Resources/English.lproj/Pinentry.xib.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/English.lproj/Pinentry.xib.strings -------------------------------------------------------------------------------- /Resources/German.lproj/Pinentry.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/German.lproj/Pinentry.xib -------------------------------------------------------------------------------- /Resources/German.lproj/Pinentry.xib.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/German.lproj/Pinentry.xib.strings -------------------------------------------------------------------------------- /Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/Icon.icns -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/Main.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/Main.xib -------------------------------------------------------------------------------- /Resources/old/English.lproj/Pinentry.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/old/English.lproj/Pinentry.xib -------------------------------------------------------------------------------- /Resources/old/German.lproj/Pinentry.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/old/German.lproj/Pinentry.xib -------------------------------------------------------------------------------- /Resources/old/Hier nichts bearbeiten oder entfernen!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Resources/old/Hier nichts bearbeiten oder entfernen! -------------------------------------------------------------------------------- /Source/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/AppDelegate.h -------------------------------------------------------------------------------- /Source/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/AppDelegate.m -------------------------------------------------------------------------------- /Source/GPGDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/GPGDefaults.h -------------------------------------------------------------------------------- /Source/GPGDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/GPGDefaults.m -------------------------------------------------------------------------------- /Source/KeychainSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/KeychainSupport.h -------------------------------------------------------------------------------- /Source/KeychainSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/KeychainSupport.m -------------------------------------------------------------------------------- /Source/PassphraseLengthFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/PassphraseLengthFormatter.h -------------------------------------------------------------------------------- /Source/PassphraseLengthFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/PassphraseLengthFormatter.m -------------------------------------------------------------------------------- /Source/PinentryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/PinentryController.h -------------------------------------------------------------------------------- /Source/PinentryController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/PinentryController.m -------------------------------------------------------------------------------- /Source/ShortcutHandlingFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/ShortcutHandlingFields.h -------------------------------------------------------------------------------- /Source/ShortcutHandlingFields.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/ShortcutHandlingFields.m -------------------------------------------------------------------------------- /Source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/main.m -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/assuan/assuan-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/assuan/assuan-buffer.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/assuan/assuan-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/assuan/assuan-defs.h -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/assuan/assuan-errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/assuan/assuan-errors.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/assuan/assuan-handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/assuan/assuan-handler.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/assuan/assuan-listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/assuan/assuan-listen.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/assuan/assuan-pipe-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/assuan/assuan-pipe-server.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/assuan/assuan-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/assuan/assuan-util.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/assuan/assuan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/assuan/assuan.h -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/config.h -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/pinentry/argparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/pinentry/argparse.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/pinentry/argparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/pinentry/argparse.h -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/pinentry/password-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/pinentry/password-cache.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/pinentry/password-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/pinentry/password-cache.h -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/pinentry/pinentry-curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/pinentry/pinentry-curses.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/pinentry/pinentry-curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/pinentry/pinentry-curses.h -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/pinentry/pinentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/pinentry/pinentry.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/pinentry/pinentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/pinentry/pinentry.h -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/secmem/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/secmem/memory.h -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/secmem/secmem-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/secmem/secmem-util.h -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/secmem/secmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/secmem/secmem.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/secmem/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/secmem/util.c -------------------------------------------------------------------------------- /Source/pinentry-0.9.4/secmem/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/pinentry-0.9.4/secmem/util.h -------------------------------------------------------------------------------- /Source/pinentry-current: -------------------------------------------------------------------------------- 1 | pinentry-0.9.4 -------------------------------------------------------------------------------- /Source/prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Source/prefix.pch -------------------------------------------------------------------------------- /Utilities/gpg-agent_cacheid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Utilities/gpg-agent_cacheid.patch -------------------------------------------------------------------------------- /Utilities/pinentry-cache_id.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Utilities/pinentry-cache_id.patch -------------------------------------------------------------------------------- /Utilities/pinentry-sigpipe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Utilities/pinentry-sigpipe.patch -------------------------------------------------------------------------------- /Version.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/Version.config -------------------------------------------------------------------------------- /pinentry-mac.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry-mac/HEAD/pinentry-mac.xcodeproj/project.pbxproj --------------------------------------------------------------------------------