summaryrefslogtreecommitdiff
path: root/common/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Add support for openssl TRUSTED CERTIFICATE PEM filesStef Walter2013-02-051-0/+2
|
* Add support for parsing PEM filesStef Walter2013-02-051-0/+2
|
* Add basic trust moduleStef Walter2013-02-051-4/+11
| | | | | | This is based off the roots-store from gnome-keyring and loads certificates from a root directory and exposes them as PKCS#11 objects.
* Add basic checksum algorithmsStef Walter2013-02-051-0/+9
| | | | | | The SHA-1 and MD5 digests here are used for checksums in legacy protocols. We don't use them in cryptographic contexts at all. These particular algorithms would be poor choices for that.
* Add more mock-module implementationStef Walter2013-02-041-0/+5
| | | | | * Move mock code into the common/ directory to be used by multiple components of p11-kit
* Add generic buffer codeStef Walter2013-02-041-0/+1
| | | | Represents a block of memory that can be added to, parsed and so on
* Add common functions for manipulating CK_ATTRIBUTE arraysStef Walter2013-01-091-0/+1
|
* Move the pkcs11.h header files into common directoryStef Walter2013-01-091-0/+7
| | | | | | | * Allows use of them across the whole project * Put a stub file in the p11-kit/ directory, so we can still refer to the headers using that path, which is what it will be at when in the installed includes directory.
* Build common code into noinst librariesStef Walter2013-01-091-2/+10
| | | | | | * This is cleaner than building the same source files all over the place over and over. * Works better with code coverage.
* Move debug and library code into the common/ subdirectoryStef Walter2013-01-091-0/+11
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.