summaryrefslogtreecommitdiff
path: root/gcr/gcr-openpgp.c
Commit message (Collapse)AuthorAgeFilesLines
* Updated FSF's addressDaniel Mustieles2014-01-311-3/+1
|
* egg-hex: Use a full string as the hex delimiterStef Walter2012-11-071-7/+7
| | | | So that we can better print out escape encodings in our test data.
* Use GBytes instead of our own EggBytesStef Walter2012-06-201-10/+10
| | | | * Bump glib minimum version to 2.32
* gcr: Use GBytes immutable ref counted byte buffersStef Walter2011-11-161-5/+11
| | | | | | | | * Copy from glib patch to EggBytes * This allows us to reliably build up ASN.1 structures from different sources, and is needed for the certificate request work. https://bugzilla.gnome.org/show_bug.cgi?id=663291
* Split the GCR and GCK libraries out of gnome-keyringsplitStef Walter2011-10-061-1/+1
| | | | | | | | | | | Commits prior to this commit will not build. To build old releases of Gcr or Gck you should use the gnome-keyring git module. This module currently depends on: gtk+ >= 3.0, glib >= 2.28.0, p11-kit >= 0.6, libgcrypt >= 1.2.2 Additionally it requires asn1Parser for building.
* gcr: Add Renderer for Gnupg keysStef Walter2011-09-271-25/+30
| | | | * Uses the colon style GcrRecord data to render gnupg key.
* gcr: Implement parsing of openpgp packet contents into records.Stef Walter2011-09-271-26/+1099
| | | | | | | * Also centralize our timegm() implementation for dumb OS's. * Add tests for openpgp packet parsing * Produces with-colons format in the gnupg style, slight differences but not incompatible.
* gcr: Implement recognizing of OpenPGP packetsStef Walter2011-09-271-0/+226
* Doesn't actually parse keys or anything else about OpenPGP (yet). * Generalize the PEM code so that it works for PGP armor.