├── .gitignore ├── DEBUGGING.md ├── Makefile.am ├── README-devel.md ├── README.md ├── autogen.sh ├── configure.ac ├── include ├── ccglue.h ├── certutil.h ├── debug.h ├── keychain_pkcs11.h ├── localauth.h ├── mypkcs11.h ├── pkcs11.h ├── pkcs11f.h ├── pkcs11n.h ├── pkcs11t.h ├── tables.h └── tokenwatcher.h ├── m4 └── signing.m4 ├── man └── keychain-pkcs11.man ├── packaging ├── distribution.xml.in └── resources │ ├── conclusion.rtf │ ├── readme.rtf │ └── welcome-in.rtf ├── src ├── ccglue.c ├── certutil.c ├── debug.c ├── keychain_pkcs11.c ├── localauth.m ├── tables.c └── tokenwatcher.m └── test ├── pkcs11_test.c ├── pkcs11_test.h └── pktest.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/.gitignore -------------------------------------------------------------------------------- /DEBUGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/DEBUGGING.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/Makefile.am -------------------------------------------------------------------------------- /README-devel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/README-devel.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/configure.ac -------------------------------------------------------------------------------- /include/ccglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/ccglue.h -------------------------------------------------------------------------------- /include/certutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/certutil.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/keychain_pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/keychain_pkcs11.h -------------------------------------------------------------------------------- /include/localauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/localauth.h -------------------------------------------------------------------------------- /include/mypkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/mypkcs11.h -------------------------------------------------------------------------------- /include/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/pkcs11.h -------------------------------------------------------------------------------- /include/pkcs11f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/pkcs11f.h -------------------------------------------------------------------------------- /include/pkcs11n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/pkcs11n.h -------------------------------------------------------------------------------- /include/pkcs11t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/pkcs11t.h -------------------------------------------------------------------------------- /include/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/tables.h -------------------------------------------------------------------------------- /include/tokenwatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/include/tokenwatcher.h -------------------------------------------------------------------------------- /m4/signing.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/m4/signing.m4 -------------------------------------------------------------------------------- /man/keychain-pkcs11.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/man/keychain-pkcs11.man -------------------------------------------------------------------------------- /packaging/distribution.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/packaging/distribution.xml.in -------------------------------------------------------------------------------- /packaging/resources/conclusion.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/packaging/resources/conclusion.rtf -------------------------------------------------------------------------------- /packaging/resources/readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/packaging/resources/readme.rtf -------------------------------------------------------------------------------- /packaging/resources/welcome-in.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/packaging/resources/welcome-in.rtf -------------------------------------------------------------------------------- /src/ccglue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/src/ccglue.c -------------------------------------------------------------------------------- /src/certutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/src/certutil.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/keychain_pkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/src/keychain_pkcs11.c -------------------------------------------------------------------------------- /src/localauth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/src/localauth.m -------------------------------------------------------------------------------- /src/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/src/tables.c -------------------------------------------------------------------------------- /src/tokenwatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/src/tokenwatcher.m -------------------------------------------------------------------------------- /test/pkcs11_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/test/pkcs11_test.c -------------------------------------------------------------------------------- /test/pkcs11_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/test/pkcs11_test.h -------------------------------------------------------------------------------- /test/pktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenh/keychain-pkcs11/HEAD/test/pktest.c --------------------------------------------------------------------------------