├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── ChangeLog-old ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── README.GIT ├── THANKS ├── TODO ├── acinclude.m4 ├── autogen.rc ├── autogen.sh ├── configure.ac ├── curses ├── Makefile.am └── pinentry-curses.c ├── depcomp ├── doc ├── HACKING ├── Makefile.am ├── gpl.texi ├── mdate-sh ├── pinentry.texi └── texinfo.tex ├── docker ├── build-pinentry-qt4-docker-image.sh ├── pinentry-qt4 │ └── Dockerfile └── run-pinentry-qt4-build.sh ├── efl ├── Makefile.am └── pinentry-efl.c ├── emacs ├── Makefile.am └── pinentry-emacs.c ├── fltk ├── Makefile.am ├── encrypt.xpm ├── icon.xpm ├── main.cxx ├── passwindow.cxx ├── passwindow.h ├── pinwindow.cxx ├── pinwindow.h ├── qualitypasswindow.cxx └── qualitypasswindow.h ├── gnome3 ├── Makefile.am └── pinentry-gnome3.c ├── gtk+-2 ├── Makefile.am └── pinentry-gtk-2.c ├── install-sh ├── m4 ├── ChangeLog ├── Makefile.am ├── curses.m4 ├── glib.m4 ├── gpg-error.m4 ├── gtk.m4 ├── iconv.m4 ├── libassuan.m4 ├── pkg.m4 ├── qt4.m4 ├── qt5.m4 └── qt6.m4 ├── macosx ├── AppDelegate.h ├── AppDelegate.m ├── Icon.icns ├── Info.plist ├── KeychainSupport.h ├── KeychainSupport.m ├── Main.xib ├── Makefile.am ├── NSStringExtensions.h ├── NSStringExtensions.m ├── PassphraseLengthFormatter.h ├── PassphraseLengthFormatter.m ├── Pinentry.xib ├── PinentryMac.h ├── PinentryMac.m ├── ShortcutHandlingFields.h ├── ShortcutHandlingFields.m ├── Version.config ├── copyInfoPlist.sh ├── de.strings ├── en.strings ├── main.m └── pinentry-mac.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ └── pinentry-mac.xcscheme ├── missing ├── mkinstalldirs ├── pinentry ├── Makefile.am ├── argparse.c ├── argparse.h ├── password-cache.c ├── password-cache.h ├── pinentry-curses.c ├── pinentry-curses.h ├── pinentry-emacs.c ├── pinentry-emacs.h ├── pinentry.c └── pinentry.h ├── qt ├── Makefile.am ├── accessibility.cpp ├── accessibility.h ├── capslock.cpp ├── capslock.h ├── capslock_p.h ├── capslock_unix.cpp ├── capslock_win.cpp ├── focusframe.cpp ├── focusframe.h ├── icons │ ├── Makefile.am │ ├── data-error.svg │ ├── hint.svg │ ├── hint_dark.svg │ ├── password-generate.svg │ ├── password-generate_dark.svg │ ├── pinentry.png │ ├── visibility.svg │ └── visibility_dark.svg ├── keyboardfocusindication.cpp ├── keyboardfocusindication.h ├── main.cpp ├── org.gnupg.pinentry-qt.desktop.in ├── pinentry_debug.cpp ├── pinentry_debug.h ├── pinentryconfirm.cpp ├── pinentryconfirm.h ├── pinentrydialog.cpp ├── pinentrydialog.h ├── pinentryrc.qrc ├── pinlineedit.cpp ├── pinlineedit.h ├── qti18n.cpp └── util.h ├── qt4 ├── Makefile.am ├── document-encrypt.png ├── main.cpp ├── pinentry.qrc ├── pinentryconfirm.cpp ├── pinentryconfirm.h ├── pinentrydialog.cpp ├── pinentrydialog.h ├── pinlineedit.cpp ├── pinlineedit.h └── qrc_pinentry.cpp ├── qt5 ├── Makefile.am ├── accessibility.cpp ├── accessibility.h ├── capslock.cpp ├── capslock.h ├── capslock_p.h ├── capslock_unix.cpp ├── capslock_win.cpp ├── focusframe.cpp ├── focusframe.h ├── icons │ ├── Makefile.am │ ├── data-error.svg │ ├── hint.svg │ ├── password-generate.svg │ ├── pinentry.png │ └── visibility.svg ├── keyboardfocusindication.cpp ├── keyboardfocusindication.h ├── main.cpp ├── org.gnupg.pinentry-qt5.desktop.in ├── pinentry_debug.cpp ├── pinentry_debug.h ├── pinentryconfirm.cpp ├── pinentryconfirm.h ├── pinentrydialog.cpp ├── pinentrydialog.h ├── pinentryrc.qrc ├── pinlineedit.cpp ├── pinlineedit.h ├── qti18n.cpp └── util.h ├── secmem ├── Makefile.am ├── secmem++.h ├── secmem-util.h ├── secmem.c ├── secmem.h ├── util.c └── util.h ├── tqt ├── Makefile.am ├── main.cpp ├── pinentrydialog.cpp ├── pinentrydialog.h ├── secqinternal.cpp ├── secqinternal_p.h ├── secqlineedit.cpp ├── secqlineedit.h ├── secqstring.cpp └── secqstring.h ├── tty ├── Makefile.am └── pinentry-tty.c └── w32 ├── Makefile.am ├── logo-128.bmp ├── logo-32.bmp ├── logo-48.bmp ├── logo-64.bmp ├── logo-96.bmp ├── main.c ├── pinentry-w32.rc └── resource.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/ChangeLog-old -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/README -------------------------------------------------------------------------------- /README.GIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/README.GIT -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/TODO -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /autogen.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/autogen.rc -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/configure.ac -------------------------------------------------------------------------------- /curses/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/curses/Makefile.am -------------------------------------------------------------------------------- /curses/pinentry-curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/curses/pinentry-curses.c -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/depcomp -------------------------------------------------------------------------------- /doc/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/doc/HACKING -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/gpl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/doc/gpl.texi -------------------------------------------------------------------------------- /doc/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/doc/mdate-sh -------------------------------------------------------------------------------- /doc/pinentry.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/doc/pinentry.texi -------------------------------------------------------------------------------- /doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/doc/texinfo.tex -------------------------------------------------------------------------------- /docker/build-pinentry-qt4-docker-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/docker/build-pinentry-qt4-docker-image.sh -------------------------------------------------------------------------------- /docker/pinentry-qt4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/docker/pinentry-qt4/Dockerfile -------------------------------------------------------------------------------- /docker/run-pinentry-qt4-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/docker/run-pinentry-qt4-build.sh -------------------------------------------------------------------------------- /efl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/efl/Makefile.am -------------------------------------------------------------------------------- /efl/pinentry-efl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/efl/pinentry-efl.c -------------------------------------------------------------------------------- /emacs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/emacs/Makefile.am -------------------------------------------------------------------------------- /emacs/pinentry-emacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/emacs/pinentry-emacs.c -------------------------------------------------------------------------------- /fltk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/fltk/Makefile.am -------------------------------------------------------------------------------- /fltk/encrypt.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/fltk/encrypt.xpm -------------------------------------------------------------------------------- /fltk/icon.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/fltk/icon.xpm -------------------------------------------------------------------------------- /fltk/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/fltk/main.cxx -------------------------------------------------------------------------------- /fltk/passwindow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/fltk/passwindow.cxx -------------------------------------------------------------------------------- /fltk/passwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/fltk/passwindow.h -------------------------------------------------------------------------------- /fltk/pinwindow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/fltk/pinwindow.cxx -------------------------------------------------------------------------------- /fltk/pinwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/fltk/pinwindow.h -------------------------------------------------------------------------------- /fltk/qualitypasswindow.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/fltk/qualitypasswindow.cxx -------------------------------------------------------------------------------- /fltk/qualitypasswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/fltk/qualitypasswindow.h -------------------------------------------------------------------------------- /gnome3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/gnome3/Makefile.am -------------------------------------------------------------------------------- /gnome3/pinentry-gnome3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/gnome3/pinentry-gnome3.c -------------------------------------------------------------------------------- /gtk+-2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/gtk+-2/Makefile.am -------------------------------------------------------------------------------- /gtk+-2/pinentry-gtk-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/gtk+-2/pinentry-gtk-2.c -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/install-sh -------------------------------------------------------------------------------- /m4/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/ChangeLog -------------------------------------------------------------------------------- /m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/Makefile.am -------------------------------------------------------------------------------- /m4/curses.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/curses.m4 -------------------------------------------------------------------------------- /m4/glib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/glib.m4 -------------------------------------------------------------------------------- /m4/gpg-error.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/gpg-error.m4 -------------------------------------------------------------------------------- /m4/gtk.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/gtk.m4 -------------------------------------------------------------------------------- /m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/iconv.m4 -------------------------------------------------------------------------------- /m4/libassuan.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/libassuan.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /m4/qt4.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/qt4.m4 -------------------------------------------------------------------------------- /m4/qt5.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/qt5.m4 -------------------------------------------------------------------------------- /m4/qt6.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/m4/qt6.m4 -------------------------------------------------------------------------------- /macosx/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/AppDelegate.h -------------------------------------------------------------------------------- /macosx/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/AppDelegate.m -------------------------------------------------------------------------------- /macosx/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/Icon.icns -------------------------------------------------------------------------------- /macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/Info.plist -------------------------------------------------------------------------------- /macosx/KeychainSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/KeychainSupport.h -------------------------------------------------------------------------------- /macosx/KeychainSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/KeychainSupport.m -------------------------------------------------------------------------------- /macosx/Main.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/Main.xib -------------------------------------------------------------------------------- /macosx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/Makefile.am -------------------------------------------------------------------------------- /macosx/NSStringExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/NSStringExtensions.h -------------------------------------------------------------------------------- /macosx/NSStringExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/NSStringExtensions.m -------------------------------------------------------------------------------- /macosx/PassphraseLengthFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/PassphraseLengthFormatter.h -------------------------------------------------------------------------------- /macosx/PassphraseLengthFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/PassphraseLengthFormatter.m -------------------------------------------------------------------------------- /macosx/Pinentry.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/Pinentry.xib -------------------------------------------------------------------------------- /macosx/PinentryMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/PinentryMac.h -------------------------------------------------------------------------------- /macosx/PinentryMac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/PinentryMac.m -------------------------------------------------------------------------------- /macosx/ShortcutHandlingFields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/ShortcutHandlingFields.h -------------------------------------------------------------------------------- /macosx/ShortcutHandlingFields.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/ShortcutHandlingFields.m -------------------------------------------------------------------------------- /macosx/Version.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/Version.config -------------------------------------------------------------------------------- /macosx/copyInfoPlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/copyInfoPlist.sh -------------------------------------------------------------------------------- /macosx/de.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/de.strings -------------------------------------------------------------------------------- /macosx/en.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/en.strings -------------------------------------------------------------------------------- /macosx/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/main.m -------------------------------------------------------------------------------- /macosx/pinentry-mac.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/pinentry-mac.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macosx/pinentry-mac.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/pinentry-mac.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macosx/pinentry-mac.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/pinentry-mac.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macosx/pinentry-mac.xcodeproj/xcshareddata/xcschemes/pinentry-mac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/macosx/pinentry-mac.xcodeproj/xcshareddata/xcschemes/pinentry-mac.xcscheme -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/missing -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /pinentry/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/Makefile.am -------------------------------------------------------------------------------- /pinentry/argparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/argparse.c -------------------------------------------------------------------------------- /pinentry/argparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/argparse.h -------------------------------------------------------------------------------- /pinentry/password-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/password-cache.c -------------------------------------------------------------------------------- /pinentry/password-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/password-cache.h -------------------------------------------------------------------------------- /pinentry/pinentry-curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/pinentry-curses.c -------------------------------------------------------------------------------- /pinentry/pinentry-curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/pinentry-curses.h -------------------------------------------------------------------------------- /pinentry/pinentry-emacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/pinentry-emacs.c -------------------------------------------------------------------------------- /pinentry/pinentry-emacs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/pinentry-emacs.h -------------------------------------------------------------------------------- /pinentry/pinentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/pinentry.c -------------------------------------------------------------------------------- /pinentry/pinentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/pinentry/pinentry.h -------------------------------------------------------------------------------- /qt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/Makefile.am -------------------------------------------------------------------------------- /qt/accessibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/accessibility.cpp -------------------------------------------------------------------------------- /qt/accessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/accessibility.h -------------------------------------------------------------------------------- /qt/capslock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/capslock.cpp -------------------------------------------------------------------------------- /qt/capslock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/capslock.h -------------------------------------------------------------------------------- /qt/capslock_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/capslock_p.h -------------------------------------------------------------------------------- /qt/capslock_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/capslock_unix.cpp -------------------------------------------------------------------------------- /qt/capslock_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/capslock_win.cpp -------------------------------------------------------------------------------- /qt/focusframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/focusframe.cpp -------------------------------------------------------------------------------- /qt/focusframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/focusframe.h -------------------------------------------------------------------------------- /qt/icons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/icons/Makefile.am -------------------------------------------------------------------------------- /qt/icons/data-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/icons/data-error.svg -------------------------------------------------------------------------------- /qt/icons/hint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/icons/hint.svg -------------------------------------------------------------------------------- /qt/icons/hint_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/icons/hint_dark.svg -------------------------------------------------------------------------------- /qt/icons/password-generate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/icons/password-generate.svg -------------------------------------------------------------------------------- /qt/icons/password-generate_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/icons/password-generate_dark.svg -------------------------------------------------------------------------------- /qt/icons/pinentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/icons/pinentry.png -------------------------------------------------------------------------------- /qt/icons/visibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/icons/visibility.svg -------------------------------------------------------------------------------- /qt/icons/visibility_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/icons/visibility_dark.svg -------------------------------------------------------------------------------- /qt/keyboardfocusindication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/keyboardfocusindication.cpp -------------------------------------------------------------------------------- /qt/keyboardfocusindication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/keyboardfocusindication.h -------------------------------------------------------------------------------- /qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/main.cpp -------------------------------------------------------------------------------- /qt/org.gnupg.pinentry-qt.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/org.gnupg.pinentry-qt.desktop.in -------------------------------------------------------------------------------- /qt/pinentry_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/pinentry_debug.cpp -------------------------------------------------------------------------------- /qt/pinentry_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/pinentry_debug.h -------------------------------------------------------------------------------- /qt/pinentryconfirm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/pinentryconfirm.cpp -------------------------------------------------------------------------------- /qt/pinentryconfirm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/pinentryconfirm.h -------------------------------------------------------------------------------- /qt/pinentrydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/pinentrydialog.cpp -------------------------------------------------------------------------------- /qt/pinentrydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/pinentrydialog.h -------------------------------------------------------------------------------- /qt/pinentryrc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/pinentryrc.qrc -------------------------------------------------------------------------------- /qt/pinlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/pinlineedit.cpp -------------------------------------------------------------------------------- /qt/pinlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/pinlineedit.h -------------------------------------------------------------------------------- /qt/qti18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/qti18n.cpp -------------------------------------------------------------------------------- /qt/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt/util.h -------------------------------------------------------------------------------- /qt4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/Makefile.am -------------------------------------------------------------------------------- /qt4/document-encrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/document-encrypt.png -------------------------------------------------------------------------------- /qt4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/main.cpp -------------------------------------------------------------------------------- /qt4/pinentry.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/pinentry.qrc -------------------------------------------------------------------------------- /qt4/pinentryconfirm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/pinentryconfirm.cpp -------------------------------------------------------------------------------- /qt4/pinentryconfirm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/pinentryconfirm.h -------------------------------------------------------------------------------- /qt4/pinentrydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/pinentrydialog.cpp -------------------------------------------------------------------------------- /qt4/pinentrydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/pinentrydialog.h -------------------------------------------------------------------------------- /qt4/pinlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/pinlineedit.cpp -------------------------------------------------------------------------------- /qt4/pinlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/pinlineedit.h -------------------------------------------------------------------------------- /qt4/qrc_pinentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt4/qrc_pinentry.cpp -------------------------------------------------------------------------------- /qt5/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/Makefile.am -------------------------------------------------------------------------------- /qt5/accessibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/accessibility.cpp -------------------------------------------------------------------------------- /qt5/accessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/accessibility.h -------------------------------------------------------------------------------- /qt5/capslock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/capslock.cpp -------------------------------------------------------------------------------- /qt5/capslock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/capslock.h -------------------------------------------------------------------------------- /qt5/capslock_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/capslock_p.h -------------------------------------------------------------------------------- /qt5/capslock_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/capslock_unix.cpp -------------------------------------------------------------------------------- /qt5/capslock_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/capslock_win.cpp -------------------------------------------------------------------------------- /qt5/focusframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/focusframe.cpp -------------------------------------------------------------------------------- /qt5/focusframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/focusframe.h -------------------------------------------------------------------------------- /qt5/icons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/icons/Makefile.am -------------------------------------------------------------------------------- /qt5/icons/data-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/icons/data-error.svg -------------------------------------------------------------------------------- /qt5/icons/hint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/icons/hint.svg -------------------------------------------------------------------------------- /qt5/icons/password-generate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/icons/password-generate.svg -------------------------------------------------------------------------------- /qt5/icons/pinentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/icons/pinentry.png -------------------------------------------------------------------------------- /qt5/icons/visibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/icons/visibility.svg -------------------------------------------------------------------------------- /qt5/keyboardfocusindication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/keyboardfocusindication.cpp -------------------------------------------------------------------------------- /qt5/keyboardfocusindication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/keyboardfocusindication.h -------------------------------------------------------------------------------- /qt5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/main.cpp -------------------------------------------------------------------------------- /qt5/org.gnupg.pinentry-qt5.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/org.gnupg.pinentry-qt5.desktop.in -------------------------------------------------------------------------------- /qt5/pinentry_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/pinentry_debug.cpp -------------------------------------------------------------------------------- /qt5/pinentry_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/pinentry_debug.h -------------------------------------------------------------------------------- /qt5/pinentryconfirm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/pinentryconfirm.cpp -------------------------------------------------------------------------------- /qt5/pinentryconfirm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/pinentryconfirm.h -------------------------------------------------------------------------------- /qt5/pinentrydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/pinentrydialog.cpp -------------------------------------------------------------------------------- /qt5/pinentrydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/pinentrydialog.h -------------------------------------------------------------------------------- /qt5/pinentryrc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/pinentryrc.qrc -------------------------------------------------------------------------------- /qt5/pinlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/pinlineedit.cpp -------------------------------------------------------------------------------- /qt5/pinlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/pinlineedit.h -------------------------------------------------------------------------------- /qt5/qti18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/qti18n.cpp -------------------------------------------------------------------------------- /qt5/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/qt5/util.h -------------------------------------------------------------------------------- /secmem/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/secmem/Makefile.am -------------------------------------------------------------------------------- /secmem/secmem++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/secmem/secmem++.h -------------------------------------------------------------------------------- /secmem/secmem-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/secmem/secmem-util.h -------------------------------------------------------------------------------- /secmem/secmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/secmem/secmem.c -------------------------------------------------------------------------------- /secmem/secmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/secmem/secmem.h -------------------------------------------------------------------------------- /secmem/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/secmem/util.c -------------------------------------------------------------------------------- /secmem/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/secmem/util.h -------------------------------------------------------------------------------- /tqt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tqt/Makefile.am -------------------------------------------------------------------------------- /tqt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tqt/main.cpp -------------------------------------------------------------------------------- /tqt/pinentrydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tqt/pinentrydialog.cpp -------------------------------------------------------------------------------- /tqt/pinentrydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tqt/pinentrydialog.h -------------------------------------------------------------------------------- /tqt/secqinternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tqt/secqinternal.cpp -------------------------------------------------------------------------------- /tqt/secqinternal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tqt/secqinternal_p.h -------------------------------------------------------------------------------- /tqt/secqlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tqt/secqlineedit.cpp -------------------------------------------------------------------------------- /tqt/secqlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tqt/secqlineedit.h -------------------------------------------------------------------------------- /tqt/secqstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tqt/secqstring.cpp -------------------------------------------------------------------------------- /tqt/secqstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tqt/secqstring.h -------------------------------------------------------------------------------- /tty/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tty/Makefile.am -------------------------------------------------------------------------------- /tty/pinentry-tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/tty/pinentry-tty.c -------------------------------------------------------------------------------- /w32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/w32/Makefile.am -------------------------------------------------------------------------------- /w32/logo-128.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/w32/logo-128.bmp -------------------------------------------------------------------------------- /w32/logo-32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/w32/logo-32.bmp -------------------------------------------------------------------------------- /w32/logo-48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/w32/logo-48.bmp -------------------------------------------------------------------------------- /w32/logo-64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/w32/logo-64.bmp -------------------------------------------------------------------------------- /w32/logo-96.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/w32/logo-96.bmp -------------------------------------------------------------------------------- /w32/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/w32/main.c -------------------------------------------------------------------------------- /w32/pinentry-w32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/w32/pinentry-w32.rc -------------------------------------------------------------------------------- /w32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPGTools/pinentry/HEAD/w32/resource.h --------------------------------------------------------------------------------