summaryrefslogtreecommitdiff
path: root/p11-kit/tests/files
Commit message (Collapse)AuthorAgeFilesLines
* Move to non-recursive Makefile for building bins and libsStef Walter2014-08-1523-158/+0
| | | | Still use recursive for documentation and translation.
* Don't load configs from user directory when setuidStef Walter2013-07-182-2/+4
| | | | | | | When running as setuid() or setgid() don't access the user's home directory, or use $HOME environment variables. https://bugzilla.redhat.com/show_bug.cgi?id=985014
* p11-kit: Add P11_KIT_MODULE_TRUSTED flagStef Walter2013-07-042-2/+4
| | | | | A new flag to pass to p11_kit_modules_load() and related functions which limits loaded modules to ones with "trust-policy: yes".
* p11-kit: Managed PKCS#11 module loadingStef Walter2013-05-212-2/+6
| | | | | | | | | Support a new managed style module loading for PKCS#11 modules. This allows us to better coordinate between multiple callers of the same PKCS#11 modules and provide hooks into their behavior. This meant redoing the public facing API. The old methods are now deprecated, marked and documented as such.
* p11-kit: New priority option and change trust-policy optionStef Walter2013-03-159-3/+12
| | | | | | | | | | | | | | * Sort loaded modules appropriately using the 'priority' option. This allows us to have a predictable order for callers, when callers iterate through modules. * Modules default to having an 'priority' option of '0'. * If modules have the same order value, then sort by name. * The above assumes the role of ordering trust-policy sources. * Change the trust-policy option to a boolean * Some of this code will be rearranged when the managed branch is merged. https://bugs.freedesktop.org/show_bug.cgi?id=61978
* Add a /usr/share/p11-kit/modules directory for package module configsStef Walter2013-02-052-0/+0
| | | | | | * Try to make /etc/pkcs11/modules for administrator use * Override the old pkg-config variables to help packages start using the new location
* Move debug and library code into the common/ subdirectoryStef Walter2013-01-0923-0/+141
Start using p11_ as our internal prefix rather than _p11_. We explicitly export p11_kit_ so this is fine as far as visibility. Move the threading, mutex, and module compat, dict, and array code into the common directory too. Take this opportunity to clean up a bit of internal API as well, since so many lines are being touched internally.