<feed xmlns='http://www.w3.org/2005/Atom'>
<title>p11-kit.git/p11-kit/tests/files/user-modules, branch p11p</title>
<subtitle>Clone of https://github.com/p11-glue/p11-kit</subtitle>
<link rel='alternate' type='text/html' href='https://git.sunet.se/p11-kit.git/'/>
<entry>
<title>Move to non-recursive Makefile for building bins and libs</title>
<updated>2014-08-15T08:43:04+00:00</updated>
<author>
<name>Stef Walter</name>
<email>stef@thewalter.net</email>
</author>
<published>2014-08-15T06:41:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/p11-kit.git/commit/?id=677dee1a04058aefe8c7689f88da52afe3b4b4bb'/>
<id>677dee1a04058aefe8c7689f88da52afe3b4b4bb</id>
<content type='text'>
Still use recursive for documentation and translation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Still use recursive for documentation and translation.
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't load configs from user directory when setuid</title>
<updated>2013-07-18T06:45:57+00:00</updated>
<author>
<name>Stef Walter</name>
<email>stef@thewalter.net</email>
</author>
<published>2013-07-17T09:57:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/p11-kit.git/commit/?id=936e4c229a4ed205e9981fc4f31acea063701b69'/>
<id>936e4c229a4ed205e9981fc4f31acea063701b69</id>
<content type='text'>
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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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
</pre>
</div>
</content>
</entry>
<entry>
<title>p11-kit: Managed PKCS#11 module loading</title>
<updated>2013-05-21T08:47:51+00:00</updated>
<author>
<name>Stef Walter</name>
<email>stefw@gnome.org</email>
</author>
<published>2013-02-06T20:57:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/p11-kit.git/commit/?id=5c19f0cf66495f00ccf69eba1d0915f862a88c8d'/>
<id>5c19f0cf66495f00ccf69eba1d0915f862a88c8d</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>p11-kit: New priority option and change trust-policy option</title>
<updated>2013-03-15T16:29:23+00:00</updated>
<author>
<name>Stef Walter</name>
<email>stefw@gnome.org</email>
</author>
<published>2013-03-07T17:53:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/p11-kit.git/commit/?id=8fd55c8089c90b52f00e4ffad572d1b9da72e6ba'/>
<id>8fd55c8089c90b52f00e4ffad572d1b9da72e6ba</id>
<content type='text'>
 * 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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * 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
</pre>
</div>
</content>
</entry>
<entry>
<title>Move debug and library code into the common/ subdirectory</title>
<updated>2013-01-09T12:49:44+00:00</updated>
<author>
<name>Stef Walter</name>
<email>stefw@gnome.org</email>
</author>
<published>2012-12-06T21:42:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/p11-kit.git/commit/?id=3d503948450d69293a3fdfec096e398fedf714f2'/>
<id>3d503948450d69293a3fdfec096e398fedf714f2</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
</feed>
