├── .gitignore ├── LICENSE ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac └── src ├── Makefile.am ├── helper.c └── pam_gnupg.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruegge/pam-gnupg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruegge/pam-gnupg/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | ACLOCAL_AMFLAGS=-I m4 2 | SUBDIRS = src 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruegge/pam-gnupg/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf --force --install 4 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruegge/pam-gnupg/HEAD/configure.ac -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruegge/pam-gnupg/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruegge/pam-gnupg/HEAD/src/helper.c -------------------------------------------------------------------------------- /src/pam_gnupg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cruegge/pam-gnupg/HEAD/src/pam_gnupg.c --------------------------------------------------------------------------------