added some debugging to pgp certificate parsing

This commit is contained in:
Andreas Steffen
2009-11-10 10:04:55 +01:00
parent 262af16179
commit bb7ae382fd
2 changed files with 35 additions and 8 deletions
@@ -173,6 +173,8 @@ bool pgp_read_packet(chunk_t *blob, chunk_t *data, pgp_packet_tag_t *tag)
*data = chunk_create(blob->ptr, len);
*blob = chunk_skip(*blob, len);
*tag = t;
DBG2("L1 - PGP %N (%u bytes)", pgp_packet_tag_names, t, len);
DBG3("%B", data);
return TRUE;
}