summaryrefslogtreecommitdiff
path: root/p11-kit/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Reimplement and remove apache licensed bits of code.Stef Walter2011-07-271-1/+1
| | | | | | | | | | * Reimplement the various bits of the hash table that were still based on the apache apr code. Use different algorithms for hashing, lookup and other stuff. * Use this as an opportunity to cleanup that code and make it more legible. https://bugzilla.redhat.com/show_bug.cgi?id=725905
* Implement support for registering and calling pinfile callbacksStef Walter2011-07-061-0/+3
| | | | | | * These are callbacks that hanlde the pinfile part of a PKCS#11 URI. * One library can register a callback that another can then call in a thread-safe and simple fashion.
* Store last failure message per thread.Stef Walter2011-06-091-1/+2
| | | | * Add p11_kit_message() function to get last message.
* Refactor configurationStef Walter2011-06-081-1/+1
| | | | | * Move configuration loading into conf.c * Have user modules with same name merge/override modules in system.
* Release version 0.1Stef Walter2011-06-071-0/+3
|
* Remove unstable API markers.Stef Walter2011-06-071-3/+0
|
* Change around installation of headers, pkg-config, and file namesStef Walter2011-05-271-9/+9
| | | | | | | | * Install headers to ${prefix}/include/p11-kit-1/p11-kit/ * This solves problems with other projects that have their own pkcs11.h files. * Change the pkg-config file name to p11-kit-1.pc * Change the source file names.
* Add support for debug tracing.Stef Walter2011-04-051-0/+1
| | | | | | | | | | | Use P11_KIT_DEBUG=xxx environment variable to enable tracing. Must have been built without --disable-debug option. P11_KIT_DEBUG can (at this point) be one of these values: all help conf lib
* Add C++ header guards, and require API instability acknowledgement.Stef Walter2011-03-311-0/+3
|
* Documentation and API cleanup.Stef Walter2011-03-311-0/+40
* Rename source directory * More consistent with return values from URI functions. * Allow formatting URI to take a uri type.