summaryrefslogtreecommitdiff
path: root/tools/tests/files
Commit message (Collapse)AuthorAgeFilesLines
* hash: Add the murmur2 hash and start using itStef Walter2013-03-202-4/+4
| | | | | | | | | | | Add implementation of the murmur2 hash function, and start using it for our dictionaries. Our implementation is incremental like our other hash functions. Also remove p11_oid_hash() which wasn't being used. In addition fix several tests whose success was based on the way that the dictionary hashed. This was a hidden testing bug.
* extract: Allow p11_save_write() to automatically calculate lengthStef Walter2013-03-152-0/+1
| | | | | | | | | Also if automatically calculating length, then ignore input that is NULL, as something that shouldn't be written out. This allows easier chaining of optional output, such as comments. https://bugs.freedesktop.org/show_bug.cgi?id=62029
* Add support for exporting OpenSSL's TRUSTED CERTIFICATE formatStef Walter2013-02-057-0/+341
|
* Add support for extracting to pem-bundle and pem-directory formatsStef Walter2013-02-052-0/+126
|
* Support for sane writing to files extractedStef Walter2013-02-051-0/+0
* Implement atomic writes of files * Writing with checks that not overwriting anything unless desired * Writing and overwriting of directory contents in a robust way